Skip to content

Commit acfc7fd

Browse files
committed
Fix comments
1 parent b260308 commit acfc7fd

File tree

4 files changed

+19
-16
lines changed

4 files changed

+19
-16
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ help:
1212
# Process this Makefile with following filters
1313
#
1414
# - Remove empty line.
15+
# - Remove line starting with whitespace, dot, or uppercase letters.
1516
# - Remove line containing ## no-doc.
1617
# - Remove after colon if the line is not a comment line.
1718
# - Replace /^## / to " ".

doc/string_properties.png

26.7 KB
Loading

doc/string_properties.svg

Lines changed: 15 additions & 15 deletions
Loading

swift-mode-lexer.el

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@
6161
;; or interpolated expressions.
6262
;; Suppose a string "aaa\( foo() )bbb\( bar() )ccc",
6363
;; "aaa\(, )bbb\(, and )ccc" are string chunks.
64+
;;
65+
;; This is not a official term; used only in swift-mode.
6466

6567
(declare-function swift-mode:backward-sexps-until "swift-mode-indent.el"
6668
(token-types
@@ -358,7 +360,7 @@ pound signs."
358360
359361
A position is escaped if it is proceeded by POUND-COUNT or more of pound signs
360362
and odd number of backslashes.
361-
Return nil otherwise." ;; FIXME pound-count
363+
Return nil otherwise."
362364
(let ((p position)
363365
(backslash-count 0))
364366
(while (eq (char-before p) ?#)

0 commit comments

Comments
 (0)