summaryrefslogtreecommitdiffstats
path: root/gensym.sml
diff options
context:
space:
mode:
authorRose Hogenson <rosehogenson@posteo.net>2025-05-16 16:43:49 -0700
committerRose Hogenson <rosehogenson@posteo.net>2025-05-16 16:46:51 -0700
commitff12ef4eea67453c1a6c1fa4614b74adf7c3caca (patch)
tree64911f7bb622075ce740c5ac4d1559295845f7d1 /gensym.sml
parent907ade52d0703e95b2e29bd8933b1f57a3ba3e09 (diff)
downloadsml-ff12ef4eea67453c1a6c1fa4614b74adf7c3caca.tar.zst
Fix spelling in GenSym
Diffstat (limited to 'gensym.sml')
-rw-r--r--gensym.sml2
1 files changed, 1 insertions, 1 deletions
diff --git a/gensym.sml b/gensym.sml
index 7a5f123..eef7333 100644
--- a/gensym.sml
+++ b/gensym.sml
@@ -1,4 +1,4 @@
-structure Gensym =
+structure GenSym =
struct
val counter : int ref = ref 0
fun new () : int = (counter := (!counter + 1) ; !counter)