summaryrefslogtreecommitdiff
path: root/deps
diff options
context:
space:
mode:
authorMartin Woodward <martinwo@microsoft.com>2012-11-23 13:31:22 +0000
committerMartin Woodward <martinwo@microsoft.com>2012-11-23 13:31:22 +0000
commit826bc4a81b9c8ce29ff2f98195fb913bada573ca (patch)
tree4ae0282e157b002482ce6f440d93348b4fee8b4c /deps
parent5cf1b4f094eb6f724b27aa01d4f0481de2e673af (diff)
downloadlibgit2-826bc4a81b9c8ce29ff2f98195fb913bada573ca.tar.gz
Remove use of English expletives
Remove words such as fuck, crap, shit etc. Remove other potentially offensive words from comments. Tidy up other geopolicital terms in comments.
Diffstat (limited to 'deps')
-rw-r--r--deps/http-parser/http_parser.c2
-rw-r--r--deps/regex/regex_internal.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/deps/http-parser/http_parser.c b/deps/http-parser/http_parser.c
index b13a28c58..203530254 100644
--- a/deps/http-parser/http_parser.c
+++ b/deps/http-parser/http_parser.c
@@ -1744,7 +1744,7 @@ size_t http_parser_execute (http_parser *parser,
case s_chunk_parameters:
{
assert(parser->flags & F_CHUNKED);
- /* just ignore this shit. TODO check for overflow */
+ /* just ignore this. TODO check for overflow */
if (ch == CR) {
parser->state = s_chunk_size_almost_done;
break;
diff --git a/deps/regex/regex_internal.h b/deps/regex/regex_internal.h
index 4184d7f5a..9eca671dc 100644
--- a/deps/regex/regex_internal.h
+++ b/deps/regex/regex_internal.h
@@ -63,7 +63,7 @@
#endif
#else /* GAWK */
/*
- * This is a freaking mess. On glibc systems you have to define
+ * This is a mess. On glibc systems you have to define
* a magic constant to get isblank() out of <ctype.h>, since it's
* a C99 function. To heck with all that and borrow a page from
* dfa.c's book.