aboutsummaryrefslogtreecommitdiff
path: root/dottydoc/src/dotty/tools/dottydoc/model
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-08-15 18:22:14 +0200
committerFelix Mulder <felix.mulder@gmail.com>2016-08-19 15:37:34 +0200
commitabf16325cb8909b8c856d2a83ad7c9b05f49130b (patch)
tree82690f4fbd1c2fe76f2fcea0410e3847c58b7c55 /dottydoc/src/dotty/tools/dottydoc/model
parentd6b5c3e0404b754c2bef432b3227cf8f61bc8896 (diff)
downloaddotty-abf16325cb8909b8c856d2a83ad7c9b05f49130b.tar.gz
dotty-abf16325cb8909b8c856d2a83ad7c9b05f49130b.tar.bz2
dotty-abf16325cb8909b8c856d2a83ad7c9b05f49130b.zip
Add documentation to dottydoc API
Diffstat (limited to 'dottydoc/src/dotty/tools/dottydoc/model')
-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") ),