summaryrefslogtreecommitdiff
path: root/guile
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2019-11-06 16:13:39 +0100
committerJonas Bernoulli <jonas@bernoul.li>2019-11-06 16:13:39 +0100
commitf31d1b065dde40ea0d820211f606df4329d73a10 (patch)
tree3eabfb3e300d1182855f1b67bb29b163ac99b084 /guile
parented6842e5bd5365bdf593c952582f98d9325b3d80 (diff)
Fix typos
Diffstat (limited to 'guile')
-rw-r--r--guile/mu-guile-message.c2
-rw-r--r--guile/mu-guile.texi14
-rw-r--r--guile/mu/stats.scm2
3 files changed, 9 insertions, 9 deletions
diff --git a/guile/mu-guile-message.c b/guile/mu-guile-message.c
index 98c67ed..04a1669 100644
--- a/guile/mu-guile-message.c
+++ b/guile/mu-guile-message.c
@@ -385,7 +385,7 @@ SCM_DEFINE (get_parts, "mu:c:get-parts", 1, 1, 0,
SCM_DEFINE (get_header, "mu:c:get-header", 2, 0, 0,
- (SCM MSG, SCM HEADER), "Get an arbitary HEADER from MSG.\n")
+ (SCM MSG, SCM HEADER), "Get an arbitrary HEADER from MSG.\n")
#define FUNC_NAME s_get_header
{
MuMsgWrapper *msgwrap;
diff --git a/guile/mu-guile.texi b/guile/mu-guile.texi
index 0f16a70..c3869e8 100644
--- a/guile/mu-guile.texi
+++ b/guile/mu-guile.texi
@@ -84,7 +84,7 @@ Trust me, it's not very hard -- and it's @emph{fun}!
Appendices
-* Recipies:: Snippets do specific things
+* Recipes:: Snippets do specific things
* GNU Free Documentation License:: The license of this manual.
@end menu
@@ -155,7 +155,7 @@ Guile version : 2.0.3.82-a2c66
@end example
If you don't see any line referring to @t{guile}, please install it, and run
-@t{configure} again. After a succesfull @t{./configure}, we can make and
+@t{configure} again. After a successful @t{./configure}, we can make and
install the package:
@example
@@ -309,7 +309,7 @@ modules and show what you can do with them.
In this chapter, we discuss searching messages and doing things with them.
@menu
-* Finding messages:: query for messages in the databse
+* Finding messages:: query for messages in the database
* Message methods:: what methods are available for messages?
* Example - the longest subject:: find the messages with the longest subject
@end menu
@@ -549,7 +549,7 @@ which is a @emph{subclass} of the @t{<mu:contact>} class discussed in
expose the following additional methods:
@itemize
-@item @code{(mu:frequency <contact>)}: returns the @emph{number of times} this contact occured in
+@item @code{(mu:frequency <contact>)}: returns the @emph{number of times} this contact occurred in
one of the address fields
@item @code{(mu:last-seen <contact>)}: returns the @emph{most recent time} the contact was
seen in one of the address fields, as a @t{time_t} value
@@ -623,7 +623,7 @@ exec guile -s $0 $@
@end lisp
This simple program could be improved in many ways; this is left as an
-excercise to the reader.
+exercise to the reader.
@node Attachments and other parts
@chapter Attachments and other parts
@@ -965,8 +965,8 @@ Please refer to the @t{mu-script} man-page for some details on writing your
own scripts.
-@node Recipies
-@appendix Recipies
+@node Recipes
+@appendix Recipes
@itemize
@item Calculating the average length of subject-lines
diff --git a/guile/mu/stats.scm b/guile/mu/stats.scm
index 29ee6b5..90ab836 100644
--- a/guile/mu/stats.scm
+++ b/guile/mu/stats.scm
@@ -65,7 +65,7 @@ returns #t if A < B, #f otherwise), and then take the first N."
(take (sort (mu:tabulate func expr) less) n))
(define* (mu:top-n-most-frequent func n #:optional (expr #t))
- "Take the results of (mu:tabulate FUNC EXPR), and return the N items with the higest frequency."
+ "Take the results of (mu:tabulate FUNC EXPR), and return the N items with the highest frequency."
(top-n func (lambda (a b) (> (cdr a) (cdr b))) n expr))
(define* (mu:count #:optional (expr #t))