diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-05-05 19:37:05 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-05-05 19:37:05 -0700 |
commit | afc466d28fbe1c0f865f914f1851316ff8ab3a63 (patch) | |
tree | 7a6b3cab5d56aace2b682670834140363ab4813d | |
parent | b897159ece19148faf414aec5fb6b7baac0fa301 (diff) | |
download | txr-afc466d28fbe1c0f865f914f1851316ff8ab3a63.tar.gz txr-afc466d28fbe1c0f865f914f1851316ff8ab3a63.tar.bz2 txr-afc466d28fbe1c0f865f914f1851316ff8ab3a63.zip |
Fix several typos.
Reported by Reini Urban.
* HACKING: the -> then.
* txr.c (help): sare -> are. Also remove blank line between
name and copyright.
-rw-r--r-- | HACKING | 2 | ||||
-rw-r--r-- | txr.c | 3 |
2 files changed, 2 insertions, 3 deletions
@@ -254,7 +254,7 @@ and which points to a heap object (at least according to its bit field; is_ptr does not validate the pointer). The codes 01 10 and 11 indicate immediate values: values of type NUM, CHR and -LIT, respectively. That is to say, if the tag bits are 01, then then remaining +LIT, respectively. That is to say, if the tag bits are 01, then the remaining upper bits of the pointer constitute a signed integer. The range of this integer is NUM_MIN to NUM_MAX, defined in lib.h. The code 10 is for characters: the remaining bits of the pointer encode a wchar_t value. The bits @@ -82,7 +82,6 @@ static void help(void) val text = lit( "\n" "TXR Version ~a\n" -"\n" "Copyright 2015, Kaz Kylheku <kaz@kylheku.com>\n" "\n" "Usage:\n" @@ -101,7 +100,7 @@ static void help(void) "options are interpreted as options. The -- option indicates the end of the\n" "options.\n" "\n" -"If no data-file arguments sare supplied, then the query itself must open a\n" +"If no data-file arguments are supplied, then the query itself must open a\n" "a data source prior to attempting to make any pattern match, or it will\n" "simply fail due to a match which has run out of data.\n" "\n" |