aboutsummaryrefslogtreecommitdiff
path: root/dottydoc/src/dotty/tools/dottydoc/model/comment/CommentParser.scala
diff options
context:
space:
mode:
Diffstat (limited to 'dottydoc/src/dotty/tools/dottydoc/model/comment/CommentParser.scala')
-rw-r--r--dottydoc/src/dotty/tools/dottydoc/model/comment/CommentParser.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/dottydoc/src/dotty/tools/dottydoc/model/comment/CommentParser.scala b/dottydoc/src/dotty/tools/dottydoc/model/comment/CommentParser.scala
index 589e2ebe2..9685b6934 100644
--- a/dottydoc/src/dotty/tools/dottydoc/model/comment/CommentParser.scala
+++ b/dottydoc/src/dotty/tools/dottydoc/model/comment/CommentParser.scala
@@ -347,7 +347,7 @@ trait CommentParser extends util.MemberLookup {
/** listStyle ::= '-' spc | '1.' spc | 'I.' spc | 'i.' spc | 'A.' spc | 'a.' spc
* Characters used to build lists and their constructors */
- protected val listStyles = Map[String, (Seq[Block] => Block)]( // TODO Should this be defined at some list companion?
+ protected val listStyles = Map[String, (Seq[Block] => Block)](
"- " -> ( UnorderedList(_) ),
"1. " -> ( OrderedList(_,"decimal") ),
"I. " -> ( OrderedList(_,"upperRoman") ),