nitdoc: make `DocComposite::title` writable
authorAlexandre Terrasa <alexandre@moz-code.org>
Tue, 9 Jun 2015 20:34:41 +0000 (16:34 -0400)
committerAlexandre Terrasa <alexandre@moz-code.org>
Wed, 24 Jun 2015 18:23:08 +0000 (14:23 -0400)
Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

src/doc/doc_base.nit

index c866351..29efa62 100644 (file)
@@ -111,7 +111,7 @@ abstract class DocComposite
        var id: String is writable
 
        # Item title if any.
-       var title: nullable String
+       var title: nullable String is writable
 
        # Does `self` have a `parent`?
        fun is_root: Bool do return parent == null