]> gitweb.factorcode.org Git - factor.git/commitdiff
editors.emacs: fix doc typo.
authorJohn Benediktsson <mrjbq7@gmail.com>
Wed, 1 Apr 2015 22:56:43 +0000 (15:56 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Wed, 1 Apr 2015 22:57:06 +0000 (15:57 -0700)
basis/editors/emacs/emacs-docs.factor

index 4e0cde3e5c4c30dea70b3d681f0db9103378a821..199b18bcce1f4f49e88abf82e764dfcd9d585080 100644 (file)
@@ -5,7 +5,7 @@ ARTICLE: "editors.emacs" "Integration with Emacs"
 "Basic Emacs integration with Factor requires the use of two executable files -- " { $snippet "emacs" } " and " { $snippet "emacsclient" } ", which act as a client/server pair. To start the server, run the " { $snippet "emacs" } " binary and execute " { $snippet "M-x server-start" } " or start " { $snippet "emacs" } " with the following line in your " { $snippet ".emacs" } " file:"
 { $code "(server-start)" }
 "On Windows, if you install Emacs to " { $snippet "Program Files" } " or " { $snippet "Program Files (x86)" } ", Factor will automatically detect the path to " { $snippet "emacsclient.exe" } ". On Unix systems, make sure that " { $snippet "emacsclient" } " is in your path. To set the path manually, use the following snippet:"
-{ $code "USE: edtiors.emacs"
+{ $code "USE: editors.emacs"
         "\"/my/crazy/bin/emacsclient\" emacsclient-path set-global"
 }