1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-15 11:14:24 +02:00

Merge pull request #41 from joushx/patch-1

Fixed typo
This commit is contained in:
Adam Bard
2013-06-29 07:38:55 -07:00

View File

@@ -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
}
/*