unofficial mirror of bug-guile@gnu.org 
 help / color / mirror / Atom feed
* bug#59647: [PATCH] Fix typos in docstrings.
@ 2022-11-28  2:20 jgart via Bug reports for GUILE, GNU's Ubiquitous Extension Language
  2023-01-16 22:20 ` Ludovic Courtès
  2023-01-16 23:17 ` jgart via Bug reports for GUILE, GNU's Ubiquitous Extension Language
  0 siblings, 2 replies; 3+ messages in thread
From: jgart via Bug reports for GUILE, GNU's Ubiquitous Extension Language @ 2022-11-28  2:20 UTC (permalink / raw)
  To: 59647; +Cc: jgart

* libguile/boolean.c
    (scm_not): Fix typo.
    (scm_boolean_p): Fix typo.
---
 libguile/boolean.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libguile/boolean.c b/libguile/boolean.c
index e8370331f..930001a89 100644
--- a/libguile/boolean.c
+++ b/libguile/boolean.c
@@ -56,7 +56,7 @@ verify (SCM_BITS_DIFFER_IN_EXACTLY_TWO_BIT_POSITIONS		\
 
 SCM_DEFINE (scm_not, "not", 1, 0, 0, 
             (SCM x),
-            "Return @code{#t} iff @var{x} is false, else return @code{#f}.")
+            "Return @code{#t} if @var{x} is false, else return @code{#f}.")
 #define FUNC_NAME s_scm_not
 {
   return scm_from_bool (scm_is_false (x));
@@ -82,7 +82,7 @@ SCM_DEFINE (scm_nil_p, "nil?", 1, 0, 0,
 
 SCM_DEFINE (scm_boolean_p, "boolean?", 1, 0, 0, 
            (SCM obj),
-            "Return @code{#t} iff @var{obj} is @code{#t} or false.")
+            "Return @code{#t} if @var{obj} is @code{#t} or false.")
 #define FUNC_NAME s_scm_boolean_p
 {
   return scm_from_bool (scm_is_bool (obj));
-- 
2.38.1






^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#59647: [PATCH] Fix typos in docstrings.
  2022-11-28  2:20 bug#59647: [PATCH] Fix typos in docstrings jgart via Bug reports for GUILE, GNU's Ubiquitous Extension Language
@ 2023-01-16 22:20 ` Ludovic Courtès
  2023-01-16 23:17 ` jgart via Bug reports for GUILE, GNU's Ubiquitous Extension Language
  1 sibling, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2023-01-16 22:20 UTC (permalink / raw)
  To: jgart; +Cc: 59647

jgart <jgart@dismail.de> skribis:

> * libguile/boolean.c
>     (scm_not): Fix typo.
>     (scm_boolean_p): Fix typo.
> ---
>  libguile/boolean.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/libguile/boolean.c b/libguile/boolean.c
> index e8370331f..930001a89 100644
> --- a/libguile/boolean.c
> +++ b/libguile/boolean.c
> @@ -56,7 +56,7 @@ verify (SCM_BITS_DIFFER_IN_EXACTLY_TWO_BIT_POSITIONS		\
>  
>  SCM_DEFINE (scm_not, "not", 1, 0, 0, 
>              (SCM x),
> -            "Return @code{#t} iff @var{x} is false, else return @code{#f}.")
> +            "Return @code{#t} if @var{x} is false, else return @code{#f}.")

Hi!  These are not typos: “iff” is short for “if and only if”.

Thanks,
Ludo’.





^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#59647: [PATCH] Fix typos in docstrings.
  2022-11-28  2:20 bug#59647: [PATCH] Fix typos in docstrings jgart via Bug reports for GUILE, GNU's Ubiquitous Extension Language
  2023-01-16 22:20 ` Ludovic Courtès
@ 2023-01-16 23:17 ` jgart via Bug reports for GUILE, GNU's Ubiquitous Extension Language
  1 sibling, 0 replies; 3+ messages in thread
From: jgart via Bug reports for GUILE, GNU's Ubiquitous Extension Language @ 2023-01-16 23:17 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 59647

> Hi! These are not typos: “iff” is short for “if and only if”.

Oops! 🦆 Thanks for clarifying that ;()





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-01-16 23:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-28  2:20 bug#59647: [PATCH] Fix typos in docstrings jgart via Bug reports for GUILE, GNU's Ubiquitous Extension Language
2023-01-16 22:20 ` Ludovic Courtès
2023-01-16 23:17 ` jgart via Bug reports for GUILE, GNU's Ubiquitous Extension Language

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).