summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2016-02-18 13:26:31 -0800
committerAdam Bard <github@adambard.com>2016-02-18 13:26:31 -0800
commit2768288bf8e5202b18083ddc88583487e7f80090 (patch)
treeab90ea777d4e39212e629eda075444455a1d5b7f
parenta08051109f623b8708700bfde5b27f4366d54b39 (diff)
parent6981980ad5698e135b4185ef9fc5f3026509d88c (diff)
Merge pull request #2143 from JacobCWard/typos-5
[c/en] typos
-rw-r--r--c.html.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/c.html.markdown b/c.html.markdown
index d92d2ee6..d4ff529d 100644
--- a/c.html.markdown
+++ b/c.html.markdown
@@ -723,8 +723,8 @@ typedef void (*my_fnp_type)(char *);
/******************************* Header Files **********************************
Header files are an important part of c as they allow for the connection of c
-source files and can simplify code and definitions by seperating them into
-seperate files.
+source files and can simplify code and definitions by separating them into
+separate files.
Header files are syntactically similar to c source files but reside in ".h"
files. They can be included in your c source file by using the precompiler
@@ -764,7 +764,7 @@ enum traffic_light_state {GREEN, YELLOW, RED};
Node createLinkedList(int *vals, int len);
/* Beyond the above elements, other definitions should be left to a c source */
-/* file. Excessive includeds or definitions should, also not be contained in */
+/* file. Excessive includes or definitions should, also not be contained in */
/* a header file but instead put into separate headers or a c file. */
#endif /* End of the if precompiler directive. */