summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2022-12-13 00:01:54 +0100
committerStefan Kangas <stefankangas@gmail.com>2022-12-13 00:01:54 +0100
commita2d8cdad344ac2bf3baf1c54761e5592d97c9422 (patch)
tree95b96cb523ce098aed6fabf805ff03d55686f12f
parent901a96e5342d74003d5620d059ad1deea43dd0da (diff)
; Fix typosexternals/rudel
-rw-r--r--rudel-obby-client.el2
-rw-r--r--rudel-util.el4
2 files changed, 3 insertions, 3 deletions
diff --git a/rudel-obby-client.el b/rudel-obby-client.el
index ec08c07..57379a1 100644
--- a/rudel-obby-client.el
+++ b/rudel-obby-client.el
@@ -555,7 +555,7 @@ received from the server.")
:documentation
"Flag that remembers, whether the session has
a 'self' user object."))
- "State used for synching session data."
+ "State used for syncing session data."
:method-invocation-order :c3)
(cl-defmethod rudel-enter ((this rudel-obby-client-state-session-synching)
diff --git a/rudel-util.el b/rudel-util.el
index 64e3a52..f6a0e49 100644
--- a/rudel-util.el
+++ b/rudel-util.el
@@ -195,7 +195,7 @@ lines."
)
(defmacro rudel-loop-fragments (data var &rest forms)
- "Execute FROMS with VAR subsequently bound to all fragments in DATA."
+ "Execute FORMS with VAR subsequently bound to all fragments in DATA."
(declare (indent 2)
(debug (form symbolp &rest form)))
(let ((fragment (make-symbol "fragment")))
@@ -205,7 +205,7 @@ lines."
)
(defmacro rudel-loop-chunks (data var size &rest forms)
- "Execute FROMS in a loop with VAR bound to chunks of DATA of SIZE.
+ "Execute FORMS in a loop with VAR bound to chunks of DATA of SIZE.
Unless (zerop (mod (length data) size) 0) the final chunk is
truncated. The expression SIZE is evaluated in each loop unless
it is a number."