aboutsummaryrefslogtreecommitdiff
path: root/lib.c
diff options
context:
space:
mode:
authorJosh Triplett <josh@freedesktop.org>2007-03-09 15:22:17 -0800
committerJosh Triplett <josh@freedesktop.org>2007-03-09 15:32:55 -0800
commitcef10da343e842f6b55f5a26d55aaec5b55bd184 (patch)
tree2a55ea9107c0cd8034a55684961a9bf455fe31a4 /lib.c
parentIntroduce keyword driven attribute parsing (diff)
downloadsparse-cef10da343e842f6b55f5a26d55aaec5b55bd184.tar.gz
sparse-cef10da343e842f6b55f5a26d55aaec5b55bd184.tar.bz2
sparse-cef10da343e842f6b55f5a26d55aaec5b55bd184.zip
Fix typos in comments
Signed-off-by: Josh Triplett <josh@freedesktop.org>
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib.c b/lib.c
index 42d47f0..79a5c55 100644
--- a/lib.c
+++ b/lib.c
@@ -268,7 +268,7 @@ static char **handle_switch_I(char *arg, char **next)
path = *++next;
if (!path)
die("missing argument for -I option");
- /* Fallthrough */
+ /* Fall through */
default:
add_pre_buffer("#add_include \"%s/\"\n", path);
}
@@ -614,7 +614,7 @@ void create_builtin_stream(void)
static struct symbol_list *sparse_tokenstream(struct token *token)
{
- // Pre-process the stream
+ // Preprocess the stream
token = preprocess(token);
if (preprocess_only) {
@@ -670,7 +670,7 @@ static struct symbol_list *sparse_file(const char *filename)
* files.
*
* NOTE NOTE NOTE! "#undef" of anything in this stage will
- * affect all subsequent files too, ie we can have non-local
+ * affect all subsequent files too, i.e. we can have non-local
* behaviour between files!
*/
static struct symbol_list *sparse_initial(void)