lib/standard: removes double dash now parsed as H2
authorAlexandre Terrasa <alexandre@moz-code.org>
Thu, 4 Dec 2014 20:19:13 +0000 (15:19 -0500)
committerAlexandre Terrasa <alexandre@moz-code.org>
Thu, 11 Dec 2014 02:01:17 +0000 (21:01 -0500)
Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

lib/standard/collection/list.nit
lib/standard/kernel.nit

index ae1b675..66ef4af 100644 (file)
@@ -139,7 +139,7 @@ class List[E]
        end
 
        # Append `l` to `self` but clear `l`.
-       ##
+       #
        # O(1)
        fun link(l: List[E])
        do
index a7d31d4..26498fe 100644 (file)
@@ -66,13 +66,13 @@ interface Object
        fun is_same_instance(other: nullable Object): Bool is intern
 
        # Have `self` and `other` the same value?
-       ##
+       #
        # The exact meaning of "same value" is let to the subclasses.
        # Implicitly, the default implementation, is `is_same_instance`
        fun ==(other: nullable Object): Bool do return self.is_same_instance(other)
 
        # Have `self` and `other` different values?
-       ##
+       #
        # != is equivalent with "not ==".
        fun !=(other: nullable Object): Bool do return not (self == other)
 
@@ -93,7 +93,7 @@ interface Object
 
        # The hash code of the object.
        # Assuming that a == b -> a.hash == b.hash
-       ##
+       #
        # Without redefinition, it is based on the `object_id` of the instance.
        fun hash: Int do return object_id / 8
 end