diff options
author | HairyFotr <hairyfotr@gmail.com> | 2017-08-23 10:14:39 +0200 |
---|---|---|
committer | HairyFotr <hairyfotr@gmail.com> | 2017-08-23 10:14:39 +0200 |
commit | 985d23a52b76593a120adff5381c2df3a80fe298 (patch) | |
tree | 0eeec5a7b13a110e18f319d1fe1c4568b68385a7 /c.html.markdown | |
parent | 9c5a67ca0f3c989ef31141f83d64fba10b93b059 (diff) |
Fix a bunch of typos
Diffstat (limited to 'c.html.markdown')
-rw-r--r-- | c.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/c.html.markdown b/c.html.markdown index 18503eab..637311ca 100644 --- a/c.html.markdown +++ b/c.html.markdown @@ -336,10 +336,10 @@ int main (int argc, char** argv) goto error; } error : - printf("Error occured at i = %d & j = %d.\n", i, j); + printf("Error occurred at i = %d & j = %d.\n", i, j); /* https://ideone.com/GuPhd6 - this will print out "Error occured at i = 52 & j = 99." + this will print out "Error occurred at i = 52 & j = 99." */ /////////////////////////////////////// |