diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-06-18 14:06:12 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-06-18 14:14:47 +0200 |
commit | 33363f7ec393feeabd975c1466e5b9959ceeb7ab (patch) | |
tree | 153cabb14e5550ca483afb5fb8855d77b76e49e1 /doc | |
parent | 26b446d52b040952897b709fb4a1d5cd834a3a9c (diff) |
doc: Fix typo.
Fixes <https://bugs.gnu.org/30941>.
Reported by Fis Trivial <ybbs.daans@hotmail.com>.
* doc/ref/libguile-foreign-objects.texi (Defining Foreign Object Types):
Remove extraneous 'image_type' in example.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ref/libguile-foreign-objects.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ref/libguile-foreign-objects.texi b/doc/ref/libguile-foreign-objects.texi index 29e1f8619..f29646ca0 100644 --- a/doc/ref/libguile-foreign-objects.texi +++ b/doc/ref/libguile-foreign-objects.texi @@ -1,6 +1,6 @@ @c -*-texinfo-*- @c This is part of the GNU Guile Reference Manual. -@c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2005, 2010, 2011, 2013, 2014 +@c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2005, 2010, 2011, 2013, 2014, 2018 @c Free Software Foundation, Inc. @c See the file guile.texi for copying conditions. @@ -53,7 +53,7 @@ struct image @{ SCM update_func; @}; -static SCM image_type image_type; +static SCM image_type; void init_image_type (void) |