summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2020-04-26 23:52:31 +0200
committerJonas Bernoulli <jonas@bernoul.li>2020-04-26 23:52:31 +0200
commit19f7f244a1afce95aa54618801848bfb2f218198 (patch)
treeec364228beee37c7efbba6a7f53653726406fd29
parent00107cb9b33db032e64dd775144639cbdbccf2c3 (diff)
downloadgeiser-19f7f244a1afce95aa54618801848bfb2f218198.tar.gz
geiser-19f7f244a1afce95aa54618801848bfb2f218198.tar.bz2
Fix typos
-rw-r--r--HACKING2
-rw-r--r--doc/cheat.texi2
-rw-r--r--doc/repl.texi2
-rw-r--r--elisp/geiser-connection.el2
-rw-r--r--elisp/geiser-edit.el2
5 files changed, 5 insertions, 5 deletions
diff --git a/HACKING b/HACKING
index e357fd3..5be4cb2 100644
--- a/HACKING
+++ b/HACKING
@@ -1,7 +1,7 @@
## How to support a new Scheme implementation
Geiser works by running an instance of a REPL, or remotely connecting
-to one, and evaluating the scheme code it sees there. Then, everytime
+to one, and evaluating the scheme code it sees there. Then, every time
it needs to perform some operation (like, say, printing autodoc,
jumping to a source location or expanding a macro), it asks the
running scheme instance for that information.
diff --git a/doc/cheat.texi b/doc/cheat.texi
index f1ef04f..c6e7afb 100644
--- a/doc/cheat.texi
+++ b/doc/cheat.texi
@@ -159,7 +159,7 @@ third key not modified by @key{Control}; e.g.,
@tab Go to previous error in the REPL buffer
@item M-TAB
@tab @code{completion-at-point}
-@tab Complete indentifier at point
+@tab Complete identifier at point
@item M-`, C-.
@tab @code{geiser-completion--complete-module}
@tab Complete module name at point
diff --git a/doc/repl.texi b/doc/repl.texi
index 282cff0..59353c4 100644
--- a/doc/repl.texi
+++ b/doc/repl.texi
@@ -418,7 +418,7 @@ not the case, the variables to tweak are (depending on which Scheme you choose):
They should be set to a string with the full path to the requisite binary.
@cindex Version checking
-Before starting the REPL, Geiser will check wether the version of your
+Before starting the REPL, Geiser will check whether the version of your
Scheme interpreter is good enough. This means that it will spend a
couple tenths of a second launching and quickly discarding a Scheme
process, but also that the error message you'll get if you're on the
diff --git a/elisp/geiser-connection.el b/elisp/geiser-connection.el
index 4df60d9..342ce7f 100644
--- a/elisp/geiser-connection.el
+++ b/elisp/geiser-connection.el
@@ -220,7 +220,7 @@
(buffer (or (geiser-con--request-buffer req) (current-buffer)))
(con (geiser-con--request-connection req)))
(if (not cont)
- (geiser-log--warn "<%s> Droping result for request %S: %s"
+ (geiser-log--warn "<%s> Dropping result for request %S: %s"
id rstr form)
(condition-case cerr
(with-current-buffer buffer
diff --git a/elisp/geiser-edit.el b/elisp/geiser-edit.el
index e9ca29b..ea89cf7 100644
--- a/elisp/geiser-edit.el
+++ b/elisp/geiser-edit.el
@@ -39,7 +39,7 @@ or following links in error buffers.")
'link geiser-debug "links in error buffers")
-;;; Auxiliar functions:
+;;; Auxiliary functions:
(defun geiser-edit--visit-file (file method)
(cond ((eq method 'window) (pop-to-buffer (find-file-noselect file t)))