1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 22:31:12 +02:00

fix comment about "local-define" and "local-remove".

* module/ice-9/boot-9.scm: Fix comment about "local-define!", whereas
  it's "local-define". Same for "local-remove".
This commit is contained in:
Andy Wingo 2010-04-20 12:42:38 +02:00
parent 31ac29b621
commit 53ab624703

View 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
;;;