summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-07-07docs: update README.md [skip ci]allcontributors[bot]
2021-07-07fix(quiz1): Updated question description (#794)Rakshit Sinha
Co-authored-by: Rakshit Sinha <rakshit.sinha@oracle.com>
2021-07-07Merge pull request #800 from rust-lang/all-contributors/add-lauralindzeyfmoko
docs: add lauralindzey as a contributor for doc
2021-07-07docs: update .all-contributorsrc [skip ci]allcontributors[bot]
2021-07-07docs: update README.md [skip ci]allcontributors[bot]
2021-07-07Merge pull request #795 from lauralindzey/docs/section-mappingfmoko
docs: Update exercise to chapter mapping for HashMap
2021-07-06docs: Update collections README with HashMap linklauralindzey
2021-07-05docs: Update exercise to chapter mapping for HashMapLaura Lindzey
2021-07-05Merge pull request #792 from rust-lang/all-contributors/add-cseltolmarisa
docs: add cseltol as a contributor for doc
2021-07-05docs: update .all-contributorsrc [skip ci]allcontributors[bot]
2021-07-05docs: update README.md [skip ci]allcontributors[bot]
2021-07-05Merge pull request #668 from cseltol/mainmarisa
fix(installation): first PowerShell command
2021-06-30Merge pull request #789 from kolbma/exercise-clippy1-hint-390marisa
chore: clippy1 hint enhancement
2021-06-30Merge pull request #790 from rust-lang/all-contributors/add-jazzplatomarisa
docs: add jazzplato as a contributor for code
2021-06-30docs: update .all-contributorsrc [skip ci]allcontributors[bot]
2021-06-30docs: update README.md [skip ci]allcontributors[bot]
2021-06-30feat(cli): Add "next" to run the next unsolved exercise. (#785)Richthofen
* Add "run next" to run the next unsolved exercise. * Fix a grammar error in the message. * Update README.md with the suggested change Co-authored-by: marisa <mokou@fastmail.com> * Update the README.md for "rustlings hint next". Co-authored-by: marisa <mokou@fastmail.com>
2021-06-29chore: clippy1 hint enhancementarlecchino
Added some explanation and links about floating point representation and to use the clippy suggestion. (fixes #390)
2021-06-29Merge pull request #787 from kolbma/exercise-iterator3-hintmarisa
chore: Update hint of iterators3
2021-06-29Update info.tomlarlecchino
Co-authored-by: marisa <mokou@fastmail.com>
2021-06-29Merge pull request #788 from rust-lang/all-contributors/add-kolbmamarisa
docs: add kolbma as a contributor for doc
2021-06-29docs: update .all-contributorsrc [skip ci]allcontributors[bot]
2021-06-29docs: update README.md [skip ci]allcontributors[bot]
2021-06-29Merge pull request #786 from kolbma/git-clone-release-tagmarisa
docs: Faster git clone command
2021-06-29chore: Update hint of iterators3arlecchino
`collect()` needs some hint for standard_library_types/iterators3 exercise with doc link for understanding different return types via `FromIterator`.
2021-06-28docs: Faster git clone commandarlecchino
Clone only release tag without history
2021-06-24Merge pull request #779 from rust-lang/all-contributors/add-hyperparabolicmarisa
docs: add hyperparabolic as a contributor for code
2021-06-24docs: update .all-contributorsrc [skip ci]allcontributors[bot]
2021-06-24docs: update README.md [skip ci]allcontributors[bot]
2021-06-24Merge pull request #771 from tlyu/iterators5-trait-tweakmarisa
fix(iterators5): derive Clone, Copy
2021-06-24Merge pull request #772 from tlyu/errors-reworkmarisa
feature: improve error_handling exercises
2021-06-24Merge pull request #778 from rust-lang/all-contributors/add-kayuapimarisa
docs: add kayuapi as a contributor for content
2021-06-24docs: update .all-contributorsrc [skip ci]allcontributors[bot]
2021-06-24docs: update README.md [skip ci]allcontributors[bot]
2021-06-24Merge pull request #773 from kayuapi/patch-1marisa
fix(variables5): confine the answer further
2021-06-09address review feedbackTaylor Yu
Adjust error text and naming to conform with best practices. Use `map_err()` instead of `or()`. Wrap lower-level errors instead of ignoring their details. Also, don't "cheat" by bypassing the `new()` function in tests. Fix a dangling reference in the try_from_into hints.
2021-06-07fix(variables5): confine the answer furtherZC
let mut number = 3; can lead to a correct answer, so the comment helps to direct the users to the intended answer.
2021-06-06feature: improve error_handling exercisesTaylor Yu
Add new exercises errors5 and errors6, to introduce boxed errors and custom error enums more gently. Delete errorsn, because it tried to do too much too soon.
2021-06-06fix: rename result1 to errors4Taylor Yu
Also put it in the ERROR HANDLING section where it probably belongs.
2021-06-06chore(iterators5): conciseness hintTaylor Yu
2021-06-06fix(iterators5): derive Clone, CopyTaylor Yu
To allow more flexibility in solutions, derive `Clone` and `Copy` for `Progress`.
2021-05-23Merge pull request #762 from tlyu/move-semantics5-fixesmarisa
fix: move_semantics5 hints
2021-05-22fix: move_semantics5 hintsTaylor Yu
Improve the hints for move_semantics5, as well as the explanatory comments in the code. Previously, it was not clear what possible changes were allowed. It seems that reordering the statements might be the intended solution. The previous comment about not "adding newlines" doesn't make sense, so treating it as "adding new lines" makes it more clear.
2021-05-22chore: minor typos in move_semantics5 hintsTaylor Yu
2021-05-17Merge pull request #758 from rust-lang/all-contributors/add-sateeshkumarbmarisa
docs: add sateeshkumarb as a contributor
2021-05-17docs: update .all-contributorsrc [skip ci]allcontributors[bot]
2021-05-17docs: update README.md [skip ci]allcontributors[bot]
2021-05-17feat: Add move_semantics5 exercise. (#746)Sateesh
* feat: Add move_semantics5 exercise. * feat: Add option3 exercise * Address review comments. Fix typos, sentence formatting. * Remove unwanted newline. * Address review comments: make comment inline, fix format in print.
2021-05-17Merge pull request #755 from tlyu/dyn-error-hintsmarisa
fix(try_from_into, from_str): hints for dyn Error
2021-05-15fix(try_from_into, from_str): hints for dyn ErrorTaylor Yu
Add hints about how to return the correct type for functions that return `Result<_, Box<dyn Error>`. Some feedback from Discord suggests that people run into trouble with that.