Commit Graph

1188 Commits (3e7e65b9f0e6e9a2f8ddd55f8403a5e3c2c852da)
 

Author SHA1 Message Date
diannasoreil 6c071d4701
Merge pull request #963 from rust-lang/all-contributors/add-J-S-Kim
docs: add J-S-Kim as a contributor for content
2 years ago
allcontributors[bot] 03ba8836f2
docs: update .all-contributorsrc [skip ci] 2 years ago
allcontributors[bot] 4bb94e050b
docs: update AUTHORS.md [skip ci] 2 years ago
diannasoreil 51817820f2
Merge pull request #961 from J-S-Kim/main
fix(errors6.rs): remove one answer code
2 years ago
mokou 76a36dd385 chore: update errors1 comments and hint 2 years ago
diannasoreil c39eb3fe55
Merge pull request #962 from rust-lang/all-contributors/add-stevenfukase
docs: add stevenfukase as a contributor for content
2 years ago
allcontributors[bot] 7dcc1fca29
docs: update .all-contributorsrc [skip ci] 2 years ago
allcontributors[bot] 887b6e183b
docs: update AUTHORS.md [skip ci] 2 years ago
stevenfukase 60bb7cc393
Fix test (#958)
fix(errors1): don't modify tests
2 years ago
J-S-Kim 43d0623086
fix(errors6.rs): remove one answer code
Although marked as 'TODO', three tests pass without any implementation because the correct answer code already exists.
2 years ago
diannasoreil e6c0d00637
Merge pull request #959 from rust-lang/all-contributors/add-ragreenburg
docs: add ragreenburg as a contributor for content
2 years ago
allcontributors[bot] b1cdce6289
docs: update .all-contributorsrc [skip ci] 2 years ago
allcontributors[bot] d3c5058d89
docs: update AUTHORS.md [skip ci] 2 years ago
ragreenburg 89650f808a
fix(move_semantics2): Add comment 2 years ago
diannasoreil 0a92262fa0
Merge pull request #953 from haveneer-training/fix-installation-path
fix(install): protect path with whitespaces using quotes
2 years ago
diannasoreil 4e2a354716
Merge pull request #954 from haveneer-training/fix-mod-content
fix(move_semantics) : add move_semantics6.rs to its mod
2 years ago
diannasoreil 74895df5a7
Merge pull request #738 from apogeeoak/text
fix(cli): Move long text strings into constants.
2 years ago
Pascal Havé d114847f25 fix(install): protect path with whitespaces using quotes and stop at the first error 2 years ago
Pascal Havé 4dfd85ff05 fix(move_semantics) : add move_semantics6.rs to its mod 2 years ago
Soroush Zare 0bd7a0631a
fix(iterators1): reorder TODO steps
Update the TODO steps in the iterators1 exercise.
2 years ago
mokou bdf6efeccd chore: clean up readme 2 years ago
diannasoreil 331cdef7e3
Merge pull request #950 from rust-lang/all-contributors/add-Kallu-A
docs: add Kallu-A as a contributor for content
2 years ago
allcontributors[bot] d4e3d98d0a
docs: update .all-contributorsrc [skip ci] 2 years ago
allcontributors[bot] 2ca5250f78
docs: update AUTHORS.md [skip ci] 2 years ago
Lucas Aries 3f0e1303e0
feat: Add move_semantics6.rs exercise (#908) 2 years ago
diannasoreil c80ad089fd
Merge pull request #949 from rust-lang/all-contributors/add-KisaragiEffective
docs: add KisaragiEffective as a contributor for doc
2 years ago
mokou 01023f5b4f chore: copy existing contributors table 2 years ago
allcontributors[bot] 70e29d9717
docs: update .all-contributorsrc [skip ci] 2 years ago
allcontributors[bot] c60bd97cb9
docs: update AUTHORS.md [skip ci] 2 years ago
diannasoreil d00f0d8c57
Merge pull request #947 from KisaragiEffective/patch-1
docs: fix some code-blocks were not highlighted
2 years ago
mokou bf93724511 chore: add empty authors file 2 years ago
mokou 057d912e78 chore: push contributors to AUTHORS.md
the readme file is getting a bit crowded at this point, it's better to have
a reference to AUTHORS.md, and then to let the bot add it in there
2 years ago
diannasoreil e306e23963
Merge pull request #948 from rust-lang/all-contributors/add-x-hgg-x
docs: add x-hgg-x as a contributor for code
2 years ago
allcontributors[bot] 0232f6058f
docs: update .all-contributorsrc [skip ci] 2 years ago
allcontributors[bot] 4378d1db46
docs: update README.md [skip ci] 2 years ago
x-hgg-x 179a75a68d
fix: Include exercises folder in the project structure behind a feature (#917)
closes #859
closes #913
closes #942
2 years ago
Kisaragi 17f9d7429c
docs: fix some code-blocks were not highlighted 2 years ago
Ryan Lowe 9be012dda0 feat!: Add progress indicator
closes #360

BREAKING CHANGE: verify() has a new function signature so it can
know the current completion progress
3 years ago
apogeeoak c1f35e46df Merge branch 'main' into text 3 years ago
diannasoreil cd2b5e8e3b
Merge pull request #926 from rust-lang/all-contributors/add-highb
docs: add highb as a contributor for doc
3 years ago
allcontributors[bot] dc36ca6d84
docs: update .all-contributorsrc [skip ci] 3 years ago
allcontributors[bot] e96112ab99
docs: update README.md [skip ci] 3 years ago
Brandon High bc56861744
doc: Add hints on how to get gcc installed (#741) 3 years ago
diannasoreil 4cde788d33
Merge pull request #733 from apogeeoak/intro
feat(intro): Proposal to add successfully compiling exercise as the first exercise.
3 years ago
diannasoreil 9838892cf3
Merge pull request #728 from Zerotask/improve-option-further-information
docs(option): improve further information if let and while let
3 years ago
diannasoreil 9c5d8ad44c
Merge pull request #925 from rust-lang/all-contributors/add-sundevilyang
docs: add sundevilyang as a contributor for content
3 years ago
allcontributors[bot] a2e74a2a4b
docs: update .all-contributorsrc [skip ci] 3 years ago
allcontributors[bot] 52c7f8a859
docs: update README.md [skip ci] 3 years ago
Yang Wen 4f7ff5d9c7
fix(structs3): Add a hint for panic (#608)
as a totally newbie to Rust, I don't know panic statement from https://doc.rust-lang.org/book/ and rustlings in the beginning. After a hard searching of [should_panic], then I figure out panic statement. 

So it's helpful to tell the learner that write a panic statement here.
3 years ago
zydxhs cbcde34540
fix(errors1): Add a comment to make the purpose more clear (#486)
Signed-off-by: zydxhs <johnsmithcry@163.com>
3 years ago