diff options
author | Morgan Smith <Morgan.J.Smith@outlook.com> | 2024-02-01 14:32:59 -0500 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-05-06 11:51:53 +0200 |
commit | f27e8b855f45bff1fde82d4d0f155a72feebab3f (patch) | |
tree | 56f72a623865b51c01d17d755d309c4f1411db79 /doc/ref/api-options.texi | |
parent | 5fcf6ff17a567ad9edfb81c1858055c7bac70ca1 (diff) | |
download | guile-f27e8b855f45bff1fde82d4d0f155a72feebab3f.tar.gz |
Fix typos throughout codebase.
* 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 <ludo@gnu.org>
Diffstat (limited to 'doc/ref/api-options.texi')
-rw-r--r-- | doc/ref/api-options.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/ref/api-options.texi b/doc/ref/api-options.texi index 4a9125e42..161c46794 100644 --- a/doc/ref/api-options.texi +++ b/doc/ref/api-options.texi @@ -18,12 +18,12 @@ installation directories, configuration flags that control pieces of functionality being included or left out, etc. @item -differences in dynamically loaded code --- behaviour and features +differences in dynamically loaded code --- behavior and features provided by modules that can be dynamically loaded into a running Guile @item different runtime options --- some of the options that are provided for -controlling Guile's behaviour may be set differently. +controlling Guile's behavior may be set differently. @end itemize Guile provides ``introspective'' variables and procedures to query all @@ -34,7 +34,7 @@ documentation on what the options mean. @menu * Build Config:: Build and installation configuration. * Feature Tracking:: Available features in the Guile process. -* Runtime Options:: Controlling Guile's runtime behaviour. +* Runtime Options:: Controlling Guile's runtime behavior. @end menu @@ -349,7 +349,7 @@ and friends (@pxref{Records}). Although these tables may seem exhaustive, it is probably unwise in practice to rely on them, as the correspondences between feature symbols -and available procedures/behaviour are not strictly defined. If you are +and available procedures/behavior are not strictly defined. If you are writing code that needs to check for the existence of some procedure, it is probably safer to do so directly using the @code{defined?} procedure than to test for the corresponding feature using @code{provided?}. @@ -358,7 +358,7 @@ than to test for the corresponding feature using @code{provided?}. @node Runtime Options @subsection Runtime Options -There are a number of runtime options available for paramaterizing +There are a number of runtime options available for parameterizing built-in procedures, like @code{read}, and built-in behavior, like what happens on an uncaught error. |