From ff479e9aa03087a14ae8806e109f09c2870b769d Mon Sep 17 00:00:00 2001 From: Gavriil Pascalau Date: Sat, 28 Mar 2020 18:31:43 +0100 Subject: [PATCH] Fix small typo --- auto/generate_test_runner.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auto/generate_test_runner.rb b/auto/generate_test_runner.rb index 41941a0..def615d 100644 --- a/auto/generate_test_runner.rb +++ b/auto/generate_test_runner.rb @@ -110,7 +110,7 @@ class UnityTestRunnerGenerator tests_and_line_numbers = [] # contains characters which will be substituted from within strings, doing - # this prevents these characters from interferring with scrubbers + # this prevents these characters from interfering with scrubbers # @ is not a valid C character, so there should be no clashes with files genuinely containing these markers substring_subs = { '{' => '@co@', '}' => '@cc@', ';' => '@ss@', '/' => '@fs@' } substring_re = Regexp.union(substring_subs.keys)