Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/oid.c
diff options
context:
space:
mode:
authorMartin Woodward <martinwo@microsoft.com>2012-11-23 17:31:22 +0400
committerMartin Woodward <martinwo@microsoft.com>2012-11-23 17:31:22 +0400
commit826bc4a81b9c8ce29ff2f98195fb913bada573ca (patch)
tree4ae0282e157b002482ce6f440d93348b4fee8b4c /src/oid.c
parent5cf1b4f094eb6f724b27aa01d4f0481de2e673af (diff)
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 'src/oid.c')
-rw-r--r--src/oid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/oid.c b/src/oid.c
index 127ad6117..1bf74b963 100644
--- a/src/oid.c
+++ b/src/oid.c
@@ -293,7 +293,7 @@ void git_oid_shorten_free(git_oid_shorten *os)
* - Each normal node points to 16 children (one for each possible
* character in the oid). This is *not* stored in an array of
* pointers, because in a 64-bit arch this would be sucking
- * 16*sizeof(void*) = 128 bytes of memory per node, which is fucking
+ * 16*sizeof(void*) = 128 bytes of memory per node, which is
* insane. What we do is store Node Indexes, and use these indexes
* to look up each node in the om->index array. These indexes are
* signed shorts, so this limits the amount of unique OIDs that