lib/sqlite3: add missing doc
authorAlexis Laferrière <alexis.laf@xymus.net>
Wed, 26 Nov 2014 16:43:06 +0000 (11:43 -0500)
committerAlexis Laferrière <alexis.laf@xymus.net>
Wed, 26 Nov 2014 20:03:49 +0000 (15:03 -0500)
Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

lib/sqlite3/sqlite3.nit

index 05c5a06..23b1ef7 100644 (file)
@@ -132,6 +132,7 @@ class Statement
        end
 end
 
+# A row from a `Statement`
 class StatementRow
        # Statement linked to `self`
        var statement: Statement
@@ -298,6 +299,9 @@ end
 class Blob
        super Sqlite3Data
 
+       # Pointer to the beginning of the blob
        var pointer: Pointer
+
+       # Size of the blob
        var length: Int
 end