summaryrefslogtreecommitdiffhomepage
path: root/c.html.markdown
diff options
context:
space:
mode:
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 89bfbe6d..2a65d82c 100644
--- a/c.html.markdown
+++ b/c.html.markdown
@@ -441,7 +441,7 @@ int add_two_ints(int x1, int x2)
return x1 + x2; // Use return to return a value
}
-// Must declare a 'funtion prototype' when creating functions before main()
+// Must declare a 'function prototype' before main() when creating functions
void getInt(char c); // function prototype
int main() { // main function
return 0;