lib/standard: adds some spaces
authorAlexandre Terrasa <alexandre@moz-code.org>
Thu, 4 Dec 2014 20:18:12 +0000 (15:18 -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/array.nit
lib/standard/file.nit
lib/standard/kernel.nit

index ffa8a94..4b73471 100644 (file)
@@ -242,6 +242,7 @@ end
 # Resizable one dimension array of objects.
 #
 # Arrays have a literal representation.
+#
 #     var a = [12, 32, 8]
 #     # is equivalent with:
 #     var b = new Array[Int]
index 343707a..4b9d553 100644 (file)
@@ -298,6 +298,7 @@ redef class String
        # trainling "/" is removed
        #
        # Note that the method only wonrk on the string:
+       #
        #  * no I/O access is performed
        #  * the validity of the path is not checked
        #
index 7d4596a..a7d31d4 100644 (file)
@@ -283,6 +283,7 @@ end
 
 # Native Booleans.
 # `true` and `false` are the only instances.
+#
 # Boolean are manipulated trough three special operators:
 #       `and`, `or`, `not`.
 # Booleans are mainly used by conditional statement and loops.