From 0306552fa90f5e7ded18e3febdd32f62bdfa7d6d Mon Sep 17 00:00:00 2001 From: yctai1994 <154885296+yctai1994@users.noreply.github.com> Date: Wed, 27 Dec 2023 12:00:44 +0900 Subject: [PATCH] Fix minor typo (#933) From `Ths function is called...` to `This function is called`. --- exercises/practice/hello-world/hello_world.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/practice/hello-world/hello_world.h b/exercises/practice/hello-world/hello_world.h index ae1cd0797..90fdce42b 100644 --- a/exercises/practice/hello-world/hello_world.h +++ b/exercises/practice/hello-world/hello_world.h @@ -7,7 +7,7 @@ // Declare the 'hello()' function, which takes no arguments and returns a // '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. Ths function is called by the test case(s) in the test source +// source file. This function is called by the test case(s) in the test source // file test/test_hello_world.c. const char *hello(void);