aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2017-07-03 20:59:44 +0300
committerArnold D. Robbins <arnold@skeeve.com>2017-07-03 20:59:44 +0300
commitbde1a08e3d349092ddd69e6eedf967350353111c (patch)
tree014cccc6d7b3c6f6f72a6d57694a9c8354375974
parent3db154790f993438c5dc5d3428fb8b0a4c69288c (diff)
parent3726632fb30bdbd08f5e030a65d8f4bfb29a79d6 (diff)
downloadegawk-bde1a08e3d349092ddd69e6eedf967350353111c.tar.gz
egawk-bde1a08e3d349092ddd69e6eedf967350353111c.tar.bz2
egawk-bde1a08e3d349092ddd69e6eedf967350353111c.zip
Merge branch 'master' into feature/api-mpfr
-rw-r--r--ChangeLog4
-rw-r--r--gawkapi.c2
-rw-r--r--gawkapi.h2
3 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 2c40ec5e..82b96c14 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2017-07-03 Arnold D. Robbins <arnold@skeeve.com>
+
+ * gawkapi.h, gawkapi.c: Typo fixes in comments.
+
2017-06-26 Arnold D. Robbins <arnold@skeeve.com>
* configure.ac: Turn a tab into a space in AC_DEFINE(SUPPLY_INTDIV).
diff --git a/gawkapi.c b/gawkapi.c
index 380404f1..cfd6b9e5 100644
--- a/gawkapi.c
+++ b/gawkapi.c
@@ -304,7 +304,7 @@ api_register_input_parser(awk_ext_id_t id, awk_input_parser_t *input_parser)
register_input_parser(input_parser);
}
-/* api_register_output_wrapper --- egister an output wrapper, for writing files / two-way pipes */
+/* api_register_output_wrapper --- register an output wrapper, for writing files / two-way pipes */
static void api_register_output_wrapper(awk_ext_id_t id,
awk_output_wrapper_t *output_wrapper)
diff --git a/gawkapi.h b/gawkapi.h
index afb45307..d1ee3021 100644
--- a/gawkapi.h
+++ b/gawkapi.h
@@ -608,7 +608,7 @@ typedef struct gawk_api {
/*
* Lookup a variable, fill in value. No messing with the value
* returned.
- * Returns false if the variable doesn't exist* or if the wrong type
+ * Returns false if the variable doesn't exist or if the wrong type
* was requested. In the latter case, vaule->val_type will have
* the real type, as described above.
*