summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIngo Lohmar <i.lohmar@gmail.com>2014-04-04 23:30:24 +0200
committerIngo Lohmar <i.lohmar@gmail.com>2014-04-04 23:30:24 +0200
commitc9395db0cc08dd11c16d67c5289317e67b8a4123 (patch)
tree51aeb913728a8590325c383eb4fc4d46fe9b7c27
parentb9bc7f0ed6e316604f74b45d0d7c38f5f4fabe56 (diff)
First round of typos
-rw-r--r--README.org9
1 files changed, 5 insertions, 4 deletions
diff --git a/README.org b/README.org
index 80f04d7..c2c3da5 100644
--- a/README.org
+++ b/README.org
@@ -6,7 +6,7 @@ of completions you choose, along with some context information, and use that to
rank candidates the next time you have to choose --- hopefully showing you
likelier candidates at the top of the list.
** Use It
-Using the package is simple. With the files in your =load=path=, add to your
+Using the package is simple. With the files in your =load-path=, add to your
=init.el= file
#+begin_src emacs-lisp
(require 'company-statistics)
@@ -15,9 +15,10 @@ Using the package is simple. With the files in your =load=path=, add to your
to load the package and turn on the mode. See the (few but powerful)
customizable options for details =M-x customize-group company-statistics=.
** Design
-Company-statistics relies on company-mode (it works by adding a function to
-company-transformers), but is only loosely coupled to it. It is designed with
-some flexibility in mind as for the recorded context information and the way
+Company-statistics is an add-on for company-mode, but is only loosely coupled to
+it (it works by adding a sorting function to =company-transformers= as well as a
+handler to =company-completion-finished-hook=). It is designed with some
+flexibility in mind as for the recorded context information and the way
candidates are scored: the default pair of functions are only examples! The
stats are automatically persistent between sessions.
** Have Fun!