summaryrefslogtreecommitdiffhomepage
path: root/c.html.markdown
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2013-06-29 07:38:55 -0700
committerAdam Bard <github@adambard.com>2013-06-29 07:38:55 -0700
commit1d5d89af3dde97f12177a5c76dc6f2746011ac0e (patch)
tree8e95049c61c3b1b71aa86ac92cf8e77f62fa55b3 /c.html.markdown
parent91283b4d8d487f0e6e048dc2e6962390bc3ee670 (diff)
parent5d15e5c0480a935ac8a566ccea75882148824ac5 (diff)
Merge pull request #41 from joushx/patch-1
Fixed typo
Diffstat (limited to 'c.html.markdown')
-rw-r--r--c.html.markdown2
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
}
/*