branch: externals/denote-search
commit 1ff3b2e06d1c1d46ea7bddd3d240416b8223dc49
Author: Lucas Quintana <[email protected]>
Commit: Lucas Quintana <[email protected]>
Fix wording
---
README.md | 17 ++++++++---------
README.org | 2 +-
denote-search.el | 4 ++--
3 files changed, 11 insertions(+), 12 deletions(-)
diff --git a/README.md b/README.md
index c544bef480..f5c1c17fff 100644
--- a/README.md
+++ b/README.md
@@ -1,19 +1,18 @@
# denote-search: A simple search utility for Denote
-This package provides a search functionality for Denote, the
-simple-to-use, focused-in-scope, and effective note-taking tool for
-Emacs.
+This package provides a search utility for Denote, the simple-to-use,
+focused-in-scope, and effective note-taking tool for Emacs.
-The command `denote-search` is the main point of entry. It accepts a
+The command `denote-search` is the main point of entry. It accepts a
query, which should be a regular expression, and then searches the
-contents of all the notes stored in `denote-directory` for it. The
+contents of all the notes stored in `denote-directory` for it. The
results are put in a buffer which allows folding and further
-filtering; all standard commands offered by xref are available as
+filtering; all standard commands offered by Xref are available as
well.
This package has the same code principles as Denote: to be
-simple-to-use, focused-in-scope, and effective. We build upon Xref
-to be good Emacs citizens, and don't use any dependencies other
-than Denote and built-in libraries.
+simple-to-use, focused-in-scope, and effective. We build upon Xref to
+be good Emacs citizens, and don't use any dependencies other than
+Denote and built-in libraries.
See the `README.org` file for a comprehensive manual.
diff --git a/README.org b/README.org
index c3145337be..a3469b05ab 100644
--- a/README.org
+++ b/README.org
@@ -205,7 +205,7 @@ notes with the "science" keyword, without the "personal"
keyword, and
which mention "Maxwell" somewhere in the text. The procedure is as
follows:
-- =M-x denote-search RET maxwell RET=[fn:3]
+- =M-x denote-search RET maxwell RET= [fn:3]
- =i _science RET=
- =x _personal RET=
- =f quantum mechanics RET=
diff --git a/denote-search.el b/denote-search.el
index b86fd3fba6..e0b52e8f66 100644
--- a/denote-search.el
+++ b/denote-search.el
@@ -26,7 +26,7 @@
;;; Commentary:
-;; This package provides a search functionality for Denote, the
+;; This package provides a search utility for Denote, the
;; simple-to-use, focused-in-scope, and effective note-taking tool for
;; Emacs.
;;
@@ -38,7 +38,7 @@
;; well.
;;
;; This package has the same code principles as Denote: to be
-;; simple-to-use, focused-in-scope, and effective. We build upon xref
+;; simple-to-use, focused-in-scope, and effective. We build upon Xref
;; to be good Emacs citizens, and don't use any dependencies other
;; than Denote and built-in libraries.