diff options
-rw-r--r-- | c.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c.html.markdown b/c.html.markdown index f5b6245d..f2b9047b 100644 --- a/c.html.markdown +++ b/c.html.markdown @@ -293,7 +293,7 @@ function_1(); // <return type> <function name>(<args>) int add_two_ints(int x1, int x2){ - return x1 + x2; // Use return a return a value + return x1 + x2; // Use return to return a value } /* |