diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-10-22 04:00:01 -0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-10-22 04:00:01 -0200 |
commit | 4dc8df302b19d3694fa80c759641389a2336203a (patch) | |
tree | 8132e35fa2ee8f38df435330953fa40b3d652323 /src | |
parent | 6530b888d7adb7e2ac0d3f1d47c9d58bd5c59451 (diff) | |
download | blogc-4dc8df302b19d3694fa80c759641389a2336203a.tar.gz blogc-4dc8df302b19d3694fa80c759641389a2336203a.tar.bz2 blogc-4dc8df302b19d3694fa80c759641389a2336203a.zip |
content-parser: fix comment
Diffstat (limited to 'src')
-rw-r--r-- | src/content-parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content-parser.c b/src/content-parser.c index ab432a4..59e337e 100644 --- a/src/content-parser.c +++ b/src/content-parser.c @@ -414,7 +414,7 @@ blogc_content_parse(const char *src, size_t *end_excerpt) char *slug = NULL; // this isn't empty because we need some reasonable default value in the - // unlikely case when we need to print some line ending before evaluating + // unlikely case that we need to print some line ending before evaluating // the "real" value. char line_ending[3] = "\n"; bool line_ending_found = false; |