From 4b8225cb9696b860395c1cd80d2e1c373b309649 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 1a027a25..52a68415 100644 --- a/src/sync/exercises.nim +++ b/src/sync/exercises.nim @@ -144,7 +144,7 @@ proc toToml(exercise: Exercise, testsPath: string): string = if uuid in exercise.tests.excluded: 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"