Skip to content

Commit 4935eb5

Browse files
authored
Update implementing-a-concept-exercise (exercism#1895)
1 parent c44c365 commit 4935eb5

1 file changed

Lines changed: 5 additions & 7 deletions

File tree

reference/implementing-a-concept-exercise.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,10 @@ languages
4545
|── .meta
4646
| |── design.md
4747
| |── config.json
48-
| └── exemplar
49-
| |── build.gradle
50-
| └── src
51-
| └── main
52-
| └── java
53-
| └── <slug>.java
48+
| └── src
49+
| └── reference
50+
| └── java
51+
| └── <slug>.java
5452
|── build.gradle
5553
└── src
5654
|── main
@@ -71,7 +69,7 @@ Now create the following three files:
7169

7270
- `src/main/java/<slug>.java`. the stub implementation file, which is the starting point for students to work on the exercise.
7371
- `src/test/java/<slug>Test.java`: the test suite, please use `assertj` to describe assertions instead of those offered by JUnit.
74-
- `.meta/exemplar/src/main/java/<slug>.java`: an exemplar implementation that passes all the tests.
72+
- `.meta/src/reference/java/<slug>.java`: an exemplar implementation that passes all the tests.
7573

7674
Append to `languages/java/exercises/settings.gradle` the following line: `concept:<slug>`
7775

0 commit comments

Comments
 (0)