aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/org
diff options
context:
space:
mode:
authorJuanma Barranquero <[email protected]>2011-11-12 00:17:16 +0100
committerJuanma Barranquero <[email protected]>2011-11-12 00:17:16 +0100
commit40a8bdf60f261d476869cdb1276a00e5641ceba4 (patch)
tree488dedb136898934dfab888db07493ac31a0cfb6 /lisp/org
parent97f18cc83d911b1722e00a2558cdff6532c3860a (diff)
Fix typos.
Diffstat (limited to 'lisp/org')
-rw-r--r--lisp/org/ChangeLog4
-rw-r--r--lisp/org/org-list.el4
-rw-r--r--lisp/org/org-plot.el2
3 files changed, 7 insertions, 3 deletions
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog
index ae150621dc..468825937b 100644
--- a/lisp/org/ChangeLog
+++ b/lisp/org/ChangeLog
@@ -1,3 +1,7 @@
+2011-11-11 Juanma Barranquero <[email protected]>
+
+ * org-plot.el (org-plot/gnuplot-to-grid-data): Fix typo in docstring.
+
2011-09-27 Eli Zaretskii <[email protected]>
* org.el (org-mode): Force left-to-right paragraphs in Org
diff --git a/lisp/org/org-list.el b/lisp/org/org-list.el
index d3c5dd99aa..866176e4e8 100644
--- a/lisp/org/org-list.el
+++ b/lisp/org/org-list.el
@@ -70,12 +70,12 @@
;; (a few thousand lines long). Thus, code should follow the rule :
;; "collect once, use many". As a corollary, it is usally a bad idea
;; to use directly an interactive function inside the code, as those,
-;; being independant entities, read the whole list structure another
+;; being independent entities, read the whole list structure another
;; time.
;;; Code:
-(eval-when-compile
+(eval-when-compile
(require 'cl))
(require 'org-macs)
(require 'org-compat)
diff --git a/lisp/org/org-plot.el b/lisp/org/org-plot.el
index b90c248eb6..419467226c 100644
--- a/lisp/org/org-plot.el
+++ b/lisp/org/org-plot.el
@@ -136,7 +136,7 @@ Pass PARAMS through to `orgtbl-to-generic' when exporting TABLE."
"Export the data in TABLE to DATA-FILE for gnuplot.
This means in a format appropriate for grid plotting by gnuplot.
PARAMS specifies which columns of TABLE should be plotted as independent
-and dependant variables."
+and dependent variables."
(interactive)
(let* ((ind (- (plist-get params :ind) 1))
(deps (if (plist-member params :deps)