tracks/csharp/exercises/word-count/README.md in trackler-2.2.1.103 vs tracks/csharp/exercises/word-count/README.md in trackler-2.2.1.104
- old
+ new
@@ -2,22 +2,20 @@
Given a phrase, count the occurrences of each word in that phrase.
For example for the input `"olly olly in come free"`
-```plain
+```text
olly: 2
in: 1
come: 1
free: 1
```
-
### Submitting Exercises
-Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/<exerciseName>` directory.
+Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/word-count` directory.
-For example, if you're submitting `bob.cs` for the Bob exercise, the submit command would be something like `exercism submit <path_to_exercism_dir>/csharp/bob/bob.cs`.
## Source
This is a classic toy problem, but we were reminded of it by seeing it in the Go Tour.
## Submitting Incomplete Solutions