summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark H Weaver <mhw@netris.org>2015-09-17 22:32:10 -0400
committerAndy Wingo <wingo@pobox.com>2016-05-22 19:49:15 +0200
commitd975a8dec6b2517dc180f60e01f37fc9bd1aaa07 (patch)
tree2b695ea765f002445c9990ec977e12bb0b1cd4fc
parentd52edc05d3ef565446f4710f3bf275b340eccc10 (diff)
downloadguile-d975a8dec6b2517dc180f60e01f37fc9bd1aaa07.tar.gz
docs: Fix external representation of <toplevel-define> in tree-il.
* doc/ref/compiler.texi (Tree-IL): Provide the correct external representation of <toplevel-define>.
-rw-r--r--doc/ref/compiler.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ref/compiler.texi b/doc/ref/compiler.texi
index 6696360bd..057ebe817 100644
--- a/doc/ref/compiler.texi
+++ b/doc/ref/compiler.texi
@@ -1,6 +1,6 @@
@c -*-texinfo-*-
@c This is part of the GNU Guile Reference Manual.
-@c Copyright (C) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015
+@c Copyright (C) 2008-2016
@c Free Software Foundation, Inc.
@c See the file guile.texi for copying conditions.
@@ -363,7 +363,7 @@ Sets a variable in the current procedure's module.
@end deftp
@deftp {Scheme Variable} <toplevel-define> src name exp
-@deftpx {External Representation} (define (toplevel @var{name}) @var{exp})
+@deftpx {External Representation} (define @var{name} @var{exp})
Defines a new top-level variable in the current procedure's module.
@end deftp