summaryrefslogtreecommitdiffhomepage
path: root/c.html.markdown
diff options
context:
space:
mode:
authorLevi Bostian <levi.bostian@gmail.com>2013-09-20 21:53:42 -0500
committerLevi Bostian <levi.bostian@gmail.com>2013-09-20 21:53:42 -0500
commit2ef41199266fefc868dd28c3e0ac5dc55daf9d8f (patch)
tree081edec2fd3abc170b3de702efb9484462df08ac /c.html.markdown
parentc4f541dc92ae149947a49a885292d8ad7ead7aa6 (diff)
Fix typo for 'funtion prototype'
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 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() {