Skip to content

Commit

Permalink
Adjust locations of files in comments. (#958)
Browse files Browse the repository at this point in the history
[no important files changed]
  • Loading branch information
siebenschlaefer authored Feb 23, 2024
1 parent 8f30281 commit 6daed38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion exercises/practice/hello-world/hello_world.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion exercises/practice/hello-world/test_hello_world.c
Original file line number Diff line number Diff line change
Expand Up @@ -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());
}

Expand Down

0 comments on commit 6daed38

Please sign in to comment.