summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--junkcode/codedr@gmail.com-grok/grok.c2
-rw-r--r--junkcode/iasoule32@gmail.com-polynomial/polynomial_adt.c2
-rw-r--r--junkcode/tinkertim@gmail.com-grawk/grawk.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/junkcode/codedr@gmail.com-grok/grok.c b/junkcode/codedr@gmail.com-grok/grok.c
index 8ae00e65..e09ed70d 100644
--- a/junkcode/codedr@gmail.com-grok/grok.c
+++ b/junkcode/codedr@gmail.com-grok/grok.c
@@ -15,7 +15,7 @@
**
** codedr@gmail.com
**
- ** Licence: Public Domain
+ ** License: Public Domain
*/
int
diff --git a/junkcode/iasoule32@gmail.com-polynomial/polynomial_adt.c b/junkcode/iasoule32@gmail.com-polynomial/polynomial_adt.c
index a241f68f..c92148b9 100644
--- a/junkcode/iasoule32@gmail.com-polynomial/polynomial_adt.c
+++ b/junkcode/iasoule32@gmail.com-polynomial/polynomial_adt.c
@@ -14,7 +14,7 @@ PolyAdt *create_adt(int hp)
void insert_term(PolyAdt *pAdt, float c, int e)
{
- assert(pAdt != NULL); //assume client code didnt call create_adt()
+ assert(pAdt != NULL); //assume client code didn't call create_adt()
Node *n = malloc(sizeof(Node));
if(pAdt->head == NULL)
diff --git a/junkcode/tinkertim@gmail.com-grawk/grawk.c b/junkcode/tinkertim@gmail.com-grawk/grawk.c
index 14e5cc4a..27a6b349 100644
--- a/junkcode/tinkertim@gmail.com-grawk/grawk.c
+++ b/junkcode/tinkertim@gmail.com-grawk/grawk.c
@@ -124,7 +124,7 @@ static void usage(void)
"awk-style print statement; defines "
"output fields\n");
printf("\nExamples:\n");
- printf(" Retreive joe123's home directory from /etc/passwd:\n");
+ printf(" Retrieve joe123's home directory from /etc/passwd:\n");
printf("\t%s -F : \"joe123\" '$6' /etc/passwd\n", progname);
printf("\n Find fields 2 3 and 4 on lines that begin with @ from stdin:\n");
printf("\tcat file.txt | %s \"^@\" '$2,$3,$4'\n", progname);