Skip to content

Commit

Permalink
Convert example to exemplar
Browse files Browse the repository at this point in the history
* Rename example files to exemplar

See exercism/docs#23

* [Docs] Correct .meta/example references to .meta/exemplar

* [Docs] Use exemplar instead of example

* [Docs] Update example name in file listings

* [Julia] Convert to exemplar.jl

* [elm] Rename .meta/Cook.elm to .meta/Examplar.elm

* [elm] Rename .meta/Examplar.elm .meta/Exemplar.elm

Co-authored-by: Matthieu Pizenberg <[email protected]>
  • Loading branch information
ErikSchierboom and mpizenberg committed Feb 2, 2021
1 parent 567dd9a commit 8f33c41
Show file tree
Hide file tree
Showing 43 changed files with 6 additions and 6 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions exercises/concept/weighing-machine/.meta/design.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ languages
| └── introduction.md
├── .meta
| ├── design.md
| └── Example.cs
| └── Exemplar.cs
├── Properties.csproj
├── Properties.cs
└── PropertiesTest.cs
Expand Down Expand Up @@ -169,7 +169,7 @@ These files are specific to the C# track:
- `Properties.csproj`: the C# project file.
- `PropertiesTest.cs`: the test suite.
- `Properties.cs`. the stub implementation file, which is the starting point for students to work on the exercise.
- `.meta/Example.cs`: an example implementation that passes all the tests.
- `.meta/Exemplar.cs`: an exemplar implementation that passes all the tests.

Check out the [`floating-point-numbers exercise`][csharp-docs-concept-exercises-numbers-floating-point] for an example on what these files should look like.

Expand Down
8 changes: 4 additions & 4 deletions reference/implementing-a-concept-exercise.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ languages
├── .meta
| |── config.json
| |── design.md
| └── Example.cs
| └── Exemplar.cs
├── &lt;NAME&gt;.cs
├── &lt;NAME&gt;.csproj
└── &lt;NAME&gt;Tests.cs
Expand Down Expand Up @@ -77,7 +77,7 @@ For more information, please read [this in-depth description][tests-file], [watc

For more information, check [this example project file][example-project-file].

### Add `.meta/Example.cs` file
### Add `.meta/Exemplar.cs` file

**Purpose:** The idiomatic example implementation that passes all the tests.

Expand Down Expand Up @@ -145,7 +145,7 @@ If you have any questions regarding implementing the exercise, please post them
[video-example-file]: https://www.youtube.com/watch?v=gkbBqd7hPrA&t=781
[example-stub-file]: ../exercises/concept/log-levels/LogLevels.cs
[example-tests-file]: ../exercises/concept/log-levels/LogLevelsTests.cs
[example-example-file]: ../exercises/concept/log-levels/.meta/Example.cs
[example-example-file]: ../exercises/concept/log-levels/.meta/Exemplar.cs
[example-project-file]: ../exercises/concept/log-levels/LogLevels.csproj
[skip-fact]: ../exercises/concept/log-levels/LogLevelsTests.cs#L11
[test-name]: ../exercises/concept/log-levels/LogLevelsTests.cs#L24
Expand All @@ -161,5 +161,5 @@ If you have any questions regarding implementing the exercise, please post them
[video-example-file]: https://www.youtube.com/watch?v=gkbBqd7hPrA&t=781
[example-stub-file]: ../languages/csharp/exercises/concept/log-levels/LogLevels.cs
[example-tests-file]: ../languages/csharp/exercises/concept/log-levels/LogLevelsTests.cs
[example-example-file]: ../languages/csharp/exercises/concept/log-levels/.meta/Example.cs
[example-example-file]: ../languages/csharp/exercises/concept/log-levels/.meta/Exemplar.cs
[example-project-file]: ../exercises/concept/log-levels/LogLevels.csproj

0 comments on commit 8f33c41

Please sign in to comment.