# HG changeset patch
# User Stefan Monnier <monnier@iro.umontreal.ca>
# Date 1186430888 0
# Node ID a3a4480349cb55dc5320c2a5a8424875f7754397
# Parent  65b1a3eb58c438dc0ed68d56c90bd105604b4377
(diff-unified->context, diff-reverse-direction, diff-fixup-modifs):
Typo in docstring.

diff -r 65b1a3eb58c4 -r a3a4480349cb lisp/ChangeLog
--- a/lisp/ChangeLog	Mon Aug 06 17:23:03 2007 +0000
+++ b/lisp/ChangeLog	Mon Aug 06 20:08:08 2007 +0000
@@ -1,5 +1,8 @@
 2007-08-06  Stefan Monnier  <monnier@iro.umontreal.ca>
 
+	* diff-mode.el (diff-unified->context, diff-reverse-direction)
+	(diff-fixup-modifs): Typo in docstring.
+
 	* emulation/tpu-edt.el (tpu-current-line): Use posn-at-point and
 	count-screen-lines.
 	(tpu-edt-off): Disable relevant pieces of advice.
diff -r 65b1a3eb58c4 -r a3a4480349cb lisp/diff-mode.el
--- a/lisp/diff-mode.el	Mon Aug 06 17:23:03 2007 +0000
+++ b/lisp/diff-mode.el	Mon Aug 06 20:08:08 2007 +0000
@@ -685,7 +685,7 @@
 (defun diff-unified->context (start end)
   "Convert unified diffs to context diffs.
 START and END are either taken from the region (if a prefix arg is given) or
-else cover the whole bufer."
+else cover the whole buffer."
   (interactive (if (or current-prefix-arg (and transient-mark-mode mark-active))
 		   (list (region-beginning) (region-end))
 		 (list (point-min) (point-max))))
@@ -847,7 +847,7 @@
 (defun diff-reverse-direction (start end)
   "Reverse the direction of the diffs.
 START and END are either taken from the region (if a prefix arg is given) or
-else cover the whole bufer."
+else cover the whole buffer."
   (interactive (if (or current-prefix-arg (and transient-mark-mode mark-active))
 		   (list (region-beginning) (region-end))
 		 (list (point-min) (point-max))))
@@ -909,7 +909,7 @@
 (defun diff-fixup-modifs (start end)
   "Fixup the hunk headers (in case the buffer was modified).
 START and END are either taken from the region (if a prefix arg is given) or
-else cover the whole bufer."
+else cover the whole buffer."
   (interactive (if (or current-prefix-arg (and transient-mark-mode mark-active))
 		   (list (region-beginning) (region-end))
 		 (list (point-min) (point-max))))