diff options
author | Levi Bostian <levi.bostian@gmail.com> | 2013-09-20 21:53:42 -0500 |
---|---|---|
committer | Levi Bostian <levi.bostian@gmail.com> | 2013-09-20 21:53:42 -0500 |
commit | 2ef41199266fefc868dd28c3e0ac5dc55daf9d8f (patch) | |
tree | 081edec2fd3abc170b3de702efb9484462df08ac /c.html.markdown | |
parent | c4f541dc92ae149947a49a885292d8ad7ead7aa6 (diff) |
Fix typo for 'funtion prototype'
Diffstat (limited to 'c.html.markdown')
-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 fd0b7964..68ef7f03 100644 --- a/c.html.markdown +++ b/c.html.markdown @@ -448,7 +448,7 @@ int add_two_ints(int x1, int x2) return x1 + x2; // Use return to return a value } -// Must declare a 'funtion prototype' before main() when creating functions +// Must declare a 'function prototype' before main() when creating functions // in file. void getInt(char c); // function prototype int main() { |