summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2011-09-17 16:53:23 +0200
committerLudovic Courtès <ludo@gnu.org>2011-09-17 16:53:23 +0200
commit2b0b09fed4e446712dde60781ed09a6100e833f3 (patch)
tree7beae1cbcf5299ba3a8b1e310f10bf79dad273a9
parent2ae0775e405de414e2da4806588b674c07793b8e (diff)
downloadguile-2b0b09fed4e446712dde60781ed09a6100e833f3.tar.gz
peval: Typo.
* module/language/tree-il/optimize.scm (peval)[maybe-unlambda]: Fix typo in comment.
-rw-r--r--module/language/tree-il/optimize.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/language/tree-il/optimize.scm b/module/language/tree-il/optimize.scm
index cb7bdf645..5e95ca1cb 100644
--- a/module/language/tree-il/optimize.scm
+++ b/module/language/tree-il/optimize.scm
@@ -256,7 +256,7 @@ it does not handle <fix> and <let-values>, it should be called before
(($ <lambda> src ()
(and lc ($ <lambda-case>)))
;; This is an anonymous lambda that we're going to inline. The
- ;; variable allocation process assumes globally unique gensyms to
+ ;; variable allocation process assumes globally unique gensyms, so
;; alpha-rename the lambda to avoid any collision with other
;; copies of it.
(make-lambda src '() (alpha-rename lc)))