diff options
author | Adam Bard <github@adambard.com> | 2013-06-29 07:38:55 -0700 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2013-06-29 07:38:55 -0700 |
commit | 1d5d89af3dde97f12177a5c76dc6f2746011ac0e (patch) | |
tree | 8e95049c61c3b1b71aa86ac92cf8e77f62fa55b3 | |
parent | 91283b4d8d487f0e6e048dc2e6962390bc3ee670 (diff) | |
parent | 5d15e5c0480a935ac8a566ccea75882148824ac5 (diff) |
Merge pull request #41 from joushx/patch-1
Fixed typo
-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 } /* |