From 2a1d21af21201826344952d3b3c58ccf415abc0f Mon Sep 17 00:00:00 2001 From: hamilton1226 Date: Thu, 28 Jan 2021 14:12:05 +0100 Subject: [PATCH] Convert example to exemplar * Rename example files to exemplar See https://github.com/exercism/v3-docs/pull/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 --- reference/implementing-a-concept-exercise.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/implementing-a-concept-exercise.md b/reference/implementing-a-concept-exercise.md index 1c1160d5..21db9a7e 100644 --- a/reference/implementing-a-concept-exercise.md +++ b/reference/implementing-a-concept-exercise.md @@ -45,7 +45,7 @@ languages ├── .gitignore ├── .eslintrc ├── jest.config.js - ├── example.ts + ├── exemplar.ts ├── <slug>.ts ├── <slug>.spec.ts ├── package.json @@ -86,7 +86,7 @@ Now create the following three files: - `.cs`. the stub implementation file, which is the starting point for students to work on the exercise. - `.spec.js`: the test suite. -- `example.js`: an example implementation that passes all the tests. +- `exemplar.js`: an exemplar implementation that passes all the tests. ## Step 2: Add documentation files