diff options
author | Marius Vollmer <mvo@zagadka.de> | 2002-02-04 16:47:35 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2002-02-04 16:47:35 +0000 |
commit | d58d5bfc1cb55d2c21954369eb67e7c965ce49cd (patch) | |
tree | 5ce543d7e13da9ac9994810e1657e06a28af91e3 | |
parent | a63cdd615010461c4d180149d5f9160a38c59c25 (diff) | |
download | guile-d58d5bfc1cb55d2c21954369eb67e7c965ce49cd.tar.gz |
(scm_make_symbol): Fix typo in docstring.
-rw-r--r-- | libguile/symbols.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/symbols.c b/libguile/symbols.c index b2f89b9e1..106b18fce 100644 --- a/libguile/symbols.c +++ b/libguile/symbols.c @@ -183,7 +183,7 @@ SCM_DEFINE (scm_make_symbol, "make-symbol", 1, 0, 0, (SCM name), "Return a new uninterned symbol with the name @var{name}. " "The returned symbol is guaranteed to be unique and future " - "calls to @code{string->symnbol} will not return it.") + "calls to @code{string->symbol} will not return it.") #define FUNC_NAME s_scm_make_symbol { SCM sym; |