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
commit 1d5d89af3d

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