summaryrefslogtreecommitdiff
path: root/stdlib/hashtbl.ml
diff options
context:
space:
mode:
authorLeo White <leo@lpw25.net>2021-02-17 13:52:42 +0000
committerLeo White <leo@lpw25.net>2021-03-22 14:38:13 +0000
commit3a128ca0e1da952fa9cffcb4a4ad9cfadc7020d4 (patch)
treeba8437f55b89276e4faf3781cdc2640273bd175c /stdlib/hashtbl.ml
parentf7ae40d9f8db0c89afd7af38d65c86c38ab805a3 (diff)
downloadocaml-3a128ca0e1da952fa9cffcb4a4ad9cfadc7020d4.tar.gz
Remove unused labels
Diffstat (limited to 'stdlib/hashtbl.ml')
-rw-r--r--stdlib/hashtbl.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/hashtbl.ml b/stdlib/hashtbl.ml
index 9c6792c1bb..d1c665c947 100644
--- a/stdlib/hashtbl.ml
+++ b/stdlib/hashtbl.ml
@@ -21,7 +21,7 @@
type ('a, 'b) t =
{ mutable size: int; (* number of entries *)
mutable data: ('a, 'b) bucketlist array; (* the buckets *)
- mutable seed: int; (* for randomization *)
+ seed: int; (* for randomization *)
mutable initial_size: int; (* initial array size *)
}