From 159392a0ee6f3b119268906c855d48ff82a663f5 Mon Sep 17 00:00:00 2001 From: Erik Schierboom 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 b5c33e73d..e4a747f59 100644 --- a/reference/implementing-a-concept-exercise.md +++ b/reference/implementing-a-concept-exercise.md @@ -40,7 +40,7 @@ languages ├── .meta │ ├── config.json │ ├── design.md - │ └── example.c + │ └── exemplar.c ├── makefile ├── <NAME>.c ├── <NAME>.h @@ -56,7 +56,7 @@ The code files are track-specific and should be designed to help the student lea - `{.c|.h}`: the stub source and header implementation files, which are the starting point for students to work on the exercise. - `test_.c`: the unit test source file. - `test-framework`: this directory contains the source files of unit test framework, [Unity][unity] -- `.meta/example{.c|.h}`: an example implementation that passes all the unit tests. +- `.meta/exemplar{.c|.h}`: an exemplar implementation that passes all the unit tests. ## Step 2: Add documentation files