From f27e8b855f45bff1fde82d4d0f155a72feebab3f Mon Sep 17 00:00:00 2001 From: Morgan Smith Date: Thu, 1 Feb 2024 14:32:59 -0500 Subject: Fix typos throughout codebase. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * NEWS: * doc/ref/api-control.texi: * doc/ref/api-data.texi: * doc/ref/api-debug.texi: * doc/ref/api-deprecated.texi: * doc/ref/api-evaluation.texi: * doc/ref/api-foreign.texi: * doc/ref/api-i18n.texi: * doc/ref/api-io.texi: * doc/ref/api-languages.texi: * doc/ref/api-macros.texi: * doc/ref/api-memory.texi: * doc/ref/api-modules.texi: * doc/ref/api-options.texi: * doc/ref/api-peg.texi: * doc/ref/api-procedures.texi: * doc/ref/api-scheduling.texi: * doc/ref/api-undocumented.texi: * doc/ref/api-utility.texi: * doc/ref/expect.texi: * doc/ref/goops.texi: * doc/ref/misc-modules.texi: * doc/ref/posix.texi: * doc/ref/repl-modules.texi: * doc/ref/scheme-ideas.texi: * doc/ref/scheme-scripts.texi: * doc/ref/srfi-modules.texi: * gc-benchmarks/larceny/dynamic.sch: * gc-benchmarks/larceny/twobit-input-long.sch: * gc-benchmarks/larceny/twobit.sch: * libguile/gc.h: * libguile/ioext.c: * libguile/list.c: * libguile/options.c: * libguile/posix.c: * libguile/threads.c: * module/ice-9/boot-9.scm: * module/ice-9/optargs.scm: * module/ice-9/ports.scm: * module/ice-9/pretty-print.scm: * module/ice-9/psyntax.scm: * module/language/elisp/parser.scm: * module/language/tree-il/compile-bytecode.scm: * module/srfi/srfi-37.scm: * module/srfi/srfi-43.scm: * module/statprof.scm: * module/texinfo/reflection.scm: * test-suite/tests/eval.test: * test-suite/tests/fluids.test: Fix typos. Signed-off-by: Ludovic Courtès --- libguile/posix.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libguile/posix.c') diff --git a/libguile/posix.c b/libguile/posix.c index da60771f9..9a873b5a1 100644 --- a/libguile/posix.c +++ b/libguile/posix.c @@ -389,7 +389,7 @@ SCM_DEFINE (scm_setgroups, "setgroups", 1, 0, 0, SCM_DEFINE (scm_getpwuid, "getpw", 0, 1, 0, (SCM user), "Look up an entry in the user database. @var{user} can be an\n" - "integer, a string, or omitted, giving the behaviour of\n" + "integer, a string, or omitted, giving the behavior of\n" "@code{getpwuid}, @code{getpwnam} or @code{getpwent}\n" "respectively.") #define FUNC_NAME s_scm_getpwuid @@ -459,7 +459,7 @@ SCM_DEFINE (scm_setpwent, "setpw", 0, 1, 0, SCM_DEFINE (scm_getgrgid, "getgr", 0, 1, 0, (SCM name), "Look up an entry in the group database. @var{name} can be an\n" - "integer, a string, or omitted, giving the behaviour of\n" + "integer, a string, or omitted, giving the behavior of\n" "@code{getgrgid}, @code{getgrnam} or @code{getgrent}\n" "respectively.") #define FUNC_NAME s_scm_getgrgid @@ -725,7 +725,7 @@ SCM_DEFINE (scm_waitpid, "waitpid", 1, 1, 0, "has terminated or (optionally) stopped. Normally it will\n" "suspend the calling process until this can be done. If more than one\n" "child process is eligible then one will be chosen by the operating system.\n\n" - "The value of @var{pid} determines the behaviour:\n\n" + "The value of @var{pid} determines the behavior:\n\n" "@table @r\n" "@item @var{pid} greater than 0\n" "Request status information from the specified child process.\n" -- cgit v1.2.3