fix comment about "local-define" and "local-remove".
authorAndy Wingo <wingo@pobox.com>
Tue, 20 Apr 2010 10:42:38 +0000 (12:42 +0200)
committerAndy Wingo <wingo@pobox.com>
Tue, 20 Apr 2010 10:43:15 +0000 (12:43 +0200)
* module/ice-9/boot-9.scm: Fix comment about "local-define!", whereas
  it's "local-define". Same for "local-remove".

module/ice-9/boot-9.scm

index 3bc24f2..bb73912 100644 (file)
@@ -2097,8 +2097,8 @@ If there is no handler at all, Guile prints an error and then exits."
 ;;;
 ;;;     local-ref name          ==      nested-ref (current-module) name
 ;;;     local-set! name val     ==      nested-set! (current-module) name val
-;;;     local-define! name val  ==      nested-define! (current-module) name val
-;;;     local-remove! name      ==      nested-remove! (current-module) name
+;;;     local-define name val   ==      nested-define! (current-module) name val
+;;;     local-remove name       ==      nested-remove! (current-module) name
 ;;;