summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Doligez <damien.doligez-inria.fr>2012-01-23 15:09:07 +0000
committerDamien Doligez <damien.doligez-inria.fr>2012-01-23 15:09:07 +0000
commit2258a237afffc3080d65b6930c195baee20bd056 (patch)
tree3317ede46857e6da2b1e8a98d3e08219072aa335
parent55d64eebc013e89fb20460dc9ff47fe5b26199a4 (diff)
fix whitespace
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@12072 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r--byterun/hash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/byterun/hash.c b/byterun/hash.c
index 5b8955df7..903c648f2 100644
--- a/byterun/hash.c
+++ b/byterun/hash.c
@@ -55,7 +55,7 @@ CAMLexport uint32 caml_hash_mix_uint32(uint32 h, uint32 d)
return h;
}
-/* Mix a platform-native integer. */
+/* Mix a platform-native integer. */
CAMLexport uint32 caml_hash_mix_intnat(uint32 h, intnat d)
{
@@ -230,7 +230,7 @@ CAMLprim value caml_hash(value count, value limit, value seed, value obj)
/* Block contents unknown. Do nothing. */
break;
case Infix_tag:
- /* Mix in the offset to distinguish different functions from
+ /* Mix in the offset to distinguish different functions from
the same mutually-recursive definition */
h = caml_hash_mix_uint32(h, Infix_offset_val(v));
v = v - Infix_offset_val(v);