From 6daed38b5bb255e52a37ea2aba525373c9ee289f Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 23 Feb 2024 15:34:24 +0100 Subject: [PATCH] Adjust locations of files in comments. (#958) [no important files changed] --- exercises/practice/hello-world/hello_world.h | 2 +- exercises/practice/hello-world/test_hello_world.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/practice/hello-world/hello_world.h b/exercises/practice/hello-world/hello_world.h index 90fdce42b..70c0bb5ac 100644 --- a/exercises/practice/hello-world/hello_world.h +++ b/exercises/practice/hello-world/hello_world.h @@ -8,7 +8,7 @@ // 'const char *', i.e. a pointer to a character (in this case the first // character in a string). The function itself is defined in the hello_world.c // source file. This function is called by the test case(s) in the test source -// file test/test_hello_world.c. +// file test_hello_world.c. const char *hello(void); #endif diff --git a/exercises/practice/hello-world/test_hello_world.c b/exercises/practice/hello-world/test_hello_world.c index 48425dba4..b9aa64268 100644 --- a/exercises/practice/hello-world/test_hello_world.c +++ b/exercises/practice/hello-world/test_hello_world.c @@ -20,7 +20,7 @@ static void test_say_hi(void) // Check if the 'hello()' function returns "Hello, World!" // This test is expected to fail after first downloading this exercise. // To make this test pass, fix the 'hello()' function definition in the - // source file src/hello_world.c. + // source file hello_world.c. TEST_ASSERT_EQUAL_STRING("Hello, World!", hello()); }