Skip to content

Commit aa30d0d

Browse files
fix: typo
1 parent 5210980 commit aa30d0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

assign4/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ Here's a step-by-step guide to implement this algorithm:
314314
> ```
315315
> You might be tempted to do something similar here with `std::ranges::to<std::set<Mispelling>>()`. This is a good idea! But the `std::ranges::to` method was only recently introduced in C++23. Depending on the version of compiler you are using, this code may compile or it may not! To be safe, and to make sure that your code compiles when we run it through the autograder on our end, please use the `std::set<Mispelling>` constructor with iterators. **In general, please only use C++ features up through C++20 for this assignment.**
316316
317-
If you have implemented everything correctly up to this point, you should have a fully functioning spellchecker now! To test it out, try re-compiling and running:
317+
If you have implemented everything correctly up to this point, you should have a fully functioning spellchecker! To test it out, try re-compiling and running:
318318
319319
```sh
320320
./main "This string is mispelled"
@@ -341,7 +341,7 @@ You can also spellcheck one of the given examples:
341341
> --dict dict_path Sets the location of the dictionary. Defaults to words.txt
342342
> --stdin Read from stdin. You can use this to pipe input from a file
343343
> --unstyled Don't add any color to the output!
344-
> --profile Profile the code, printing out how long tokenizing/spellcheck took
344+
> --profile Profile the code, printing out how long tokenizing/spellcheck took
345345
> text The text you want to spellcheck, if not using stdin
346346
> ```
347347
>

0 commit comments

Comments
 (0)