branch: elpa/treepy
commit 282fbc94747fe2a00d36e2a74d147c8fa0ac4be7
Author: Daniel Barreto <[email protected]>
Commit: Daniel Barreto <[email protected]>
Small typofixes
---
test/treepy.el-walker-test.el | 6 +++---
test/treepy.el-zipper-test.el | 6 +++---
treepy.el | 8 ++++----
3 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/test/treepy.el-walker-test.el b/test/treepy.el-walker-test.el
index a430bdbc2d..b317a91e66 100644
--- a/test/treepy.el-walker-test.el
+++ b/test/treepy.el-walker-test.el
@@ -1,8 +1,8 @@
-;;; treepy-walker-tests.el --- Generic tree traversing tools -*-
lexical-binding: t -*-
+;;; treepy-walker-tests.el --- Generic tree traversal tools -*-
lexical-binding: t -*-
;;
;; Filename: treepy.el-walker-test.el
;;
-;; Description: Generic Tree Traversing Tools
+;; Description: Generic Tree Traversal Tools
;; Author: Daniel Barreto <[email protected]>
;; Created: Mon Jul 10 15:17:36 2017 (+0200)
;; Version: 0.1.0
@@ -13,7 +13,7 @@
;;
;;; Commentary:
;;
-;; Generic tools for recursive and iterative tree traversing based on
+;; Generic tools for recursive and iterative tree traversal based on
;; clojure.walk and clojure.zip respectively.
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
diff --git a/test/treepy.el-zipper-test.el b/test/treepy.el-zipper-test.el
index 23eab0629a..ff94034041 100644
--- a/test/treepy.el-zipper-test.el
+++ b/test/treepy.el-zipper-test.el
@@ -1,8 +1,8 @@
-;;; treepy-zipper-tests.el --- Generic tree traversing tools -*-
lexical-binding: t -*-
+;;; treepy-zipper-tests.el --- Generic tree traversal tools -*-
lexical-binding: t -*-
;;
;; Filename: treepy.el-zipper-test.el
;;
-;; Description: Generic Tree Traversing Tools
+;; Description: Generic Tree Traversal Tools
;; Author: Daniel Barreto <[email protected]>
;; Created: Mon Jul 10 15:17:36 2017 (+0200)
;; Version: 0.1.0
@@ -13,7 +13,7 @@
;;
;;; Commentary:
;;
-;; Generic tools for recursive and iterative tree traversing based on
+;; Generic tools for recursive and iterative tree traversal based on
;; clojure.walk and clojure.zip respectively.
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
diff --git a/treepy.el b/treepy.el
index c97add2089..7a59da5bc3 100644
--- a/treepy.el
+++ b/treepy.el
@@ -1,4 +1,4 @@
-;;; treepy.el --- Generic tree traversing tools -*- lexical-binding:
t -*-
+;;; treepy.el --- Generic tree traversal tools -*- lexical-binding:
t -*-
;;
;; Filename: treepy.el
;;
@@ -16,7 +16,7 @@
;;
;;; Commentary:
;;
-;; Generic tools for recursive and iterative tree traversing based on
+;; Generic tools for recursive and iterative tree traversal based on
;; clojure.walk and clojure.zip respectively. Depends on `map', a map
;; manipulation library built in Emacs 25.1. All functions are prefixed
;; with "treepy-"
@@ -42,7 +42,7 @@
(require 'map)
-;;; Walk (recursive tree traversing)
+;;; Walk (recursive tree traversal)
(defun treepy-walk (inner outer form)
"Using INNER and OUTER, traverse FORM, an arbitrary data structure.
@@ -103,7 +103,7 @@ parameter is the function to be used by `map-contains-key'."
form))
-;;; Zipper (iterative tree traversing)
+;;; Zipper (iterative tree traversal)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun treepy--context (loc &optional key)