From b5827ec2816542b6b52bd2c04c98d69219fb9260 Mon Sep 17 00:00:00 2001 From: ee7 <45465154+ee7@users.noreply.github.com> Date: Fri, 7 May 2021 16:28:03 +0200 Subject: [PATCH] sync(exercises): nitpick comment --- src/sync/exercises.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sync/exercises.nim b/src/sync/exercises.nim index db036951e..5fd1aa83a 100644 --- a/src/sync/exercises.nim +++ b/src/sync/exercises.nim @@ -124,7 +124,7 @@ proc toToml(exercise: Exercise, testsPath: string): string = if testCase.uuid notin exercise.tests.included: result.add "include = false\n" - # Always output the `reimplements` value, if present + # Always add the `reimplements` property, if present if testCase.reimplements.isSome(): result.add &"reimplements = \"{testCase.reimplements.get().uuid}\"\n"