Skip to content

Commit

Permalink
Fix typo in docstrings
Browse files Browse the repository at this point in the history
See #1, thanks @purcell
  • Loading branch information
yasuyk committed Nov 17, 2013
1 parent 246b51b commit ba1cd5c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions web-beautify.el
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ By PROGRAM, format current buffer with EXTENSTION."
(defun web-beautify-html ()
"Format region if active, otherwise the current buffer.
Formation is done according to the html-beautify command."
Formatting is done according to the html-beautify command."
(interactive)
(if (use-region-p)
(web-beautify-format-region
Expand All @@ -147,7 +147,7 @@ Formation is done according to the html-beautify command."
(defun web-beautify-css ()
"Format region if active, otherwise the current buffer.
Formation is done according to the css-beautify command."
Formatting is done according to the css-beautify command."
(interactive)
(if (use-region-p)
(web-beautify-format-region
Expand All @@ -164,7 +164,7 @@ Formation is done according to the css-beautify command."
(defun web-beautify-js ()
"Format region from if active, otherwise the current buffer.
Formation is done according to the js-beautify command."
Formatting is done according to the js-beautify command."
(interactive)
(if (use-region-p)
(web-beautify-format-region
Expand Down

0 comments on commit ba1cd5c

Please sign in to comment.