From 2ef41199266fefc868dd28c3e0ac5dc55daf9d8f Mon Sep 17 00:00:00 2001 From: Levi Bostian Date: Fri, 20 Sep 2013 21:53:42 -0500 Subject: Fix typo for 'funtion prototype' --- c.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() { -- cgit v1.2.3