diff options
author | John Rocamora <johnrocamora@gmail.com> | 2015-12-12 17:51:23 -0500 |
---|---|---|
committer | John Rocamora <johnrocamora@gmail.com> | 2015-12-12 17:51:23 -0500 |
commit | fd26c8ddfb6d4bfa969b323a2e98ce1b74bc8127 (patch) | |
tree | de7d2577bfba7a7380cbedf7510aeeb20510d626 | |
parent | 89b58d8b86f185018b65f7c9f0206b90df7b9fa0 (diff) |
Added missing semicolon
-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 6b452b1b..f4aa2f5a 100644 --- a/c++.html.markdown +++ b/c++.html.markdown @@ -149,7 +149,7 @@ namespace First { namespace Second { void foo() { - printf("This is Second::foo\n") + printf("This is Second::foo\n"); } } |