From: Brad Hards Date: Sun, 16 Jan 2011 06:16:46 +0000 (+1100) Subject: junkcode: spelling fixes. X-Git-Url: https://git.ozlabs.org/?p=ccan;a=commitdiff_plain;h=2b767ab8c86d6931eda6a1c39c826a0b5edccca9;hp=d79a327642580df2707082c32ce5370bb517e18c junkcode: spelling fixes. --- 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);