Skip to content

Commit

Permalink
Fix some quoting problems in doc strings
Browse files Browse the repository at this point in the history
Most of these are minor issues involving, e.g., quoting `like this'
instead of 'like this'.  A few involve escaping ` and ' with a
preceding \= when the characters should not be turned into curved single
quotes.
  • Loading branch information
eggert committed Jul 11, 2016
1 parent ba28d97 commit 301259c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions svg-clock.el
Expand Up @@ -73,9 +73,9 @@

(defun svg-clock--create-def-elements (foreground background)
"Return a list of SVG elements using the colors FOREGROUND and BACKGROUND.
The elements are supposed to be added to an SVG object as 'defs'.
The SVG may then 'use': 'clock-face, 'second-hand, 'minute-hand
and 'hour-hand. The clock-face has a size of 1x1."
The elements are supposed to be added to an SVG object as `defs'.
The SVG may then `use': `clock-face', `second-hand', `minute-hand'
and `hour-hand'. The clock-face has a size of 1x1."
(list (svg-clock-symbol 'tickshort
(svg-clock-line .5 .02 .5 .04
`(stroke . ,foreground)
Expand Down

0 comments on commit 301259c

Please sign in to comment.