diff --git a/db/db-result.h b/db/db-result.h
index 84b60aa..0bc2156 100644
--- a/db/db-result.h
+++ b/db/db-result.h
@@ -30,7 +30,7 @@ typedef struct _DbColumn DbColumn;
* DbResult:
* @nrows: Number of rows.
* @ncols: Number of columns.
- * @data: (element-type DbRow): Has a #GList.
+ * @data: (element-type DbRow): Has a #GPtrArray.
* @column: Has a #DbColumn.
*
* Has the information of a row.
@@ -59,13 +59,14 @@ DbColumnInfo;
/**
* DbColumn:
+ * @name: Name of the column
+ * @alias: The name given to the column in the query
+ * @table: Name of the table
+ * @table_alias: The name given to the table in the query
* @info: A #DbColumnInfo
* @spec: A #GvnParamSpec
- * @table: Name of the table
- * @name: Name of the column
- * @display: The name given to it in the query
*
- * Has the information of a column.
+ * The information of a column.
**/
struct _DbColumn
{
diff --git a/docs/reference/hedera/hedera-docs.sgml b/docs/reference/hedera/hedera-docs.sgml
index b907dfa..c7bca0f 100644
--- a/docs/reference/hedera/hedera-docs.sgml
+++ b/docs/reference/hedera/hedera-docs.sgml
@@ -72,6 +72,7 @@
SqlLib
+
@@ -119,15 +120,16 @@
Fields
-
-
-
-
+
+
+
+
+ Columns
diff --git a/gvn/gvn-misc.c b/gvn/gvn-misc.c
index ba102b5..264c697 100644
--- a/gvn/gvn-misc.c
+++ b/gvn/gvn-misc.c
@@ -24,16 +24,6 @@
* @Title: Miscelaneous utility functions
**/
-/**
- * gvn_object_warning:
- * @instance: the object instance within which the warning was emitted
- * @message: (allow-none): a string with the message to show or #NULL
- *
- * Prints a more verbose warning message than g_warning(), showing the type of
- * the object @instance, the file and line from where it's been called and
- * @message, if any.
- **/
-
/**
* gvn_key_file_save:
* @self: a #GKeyFile
diff --git a/sql/sql-batch.c b/sql/sql-batch.c
index 043ae12..734a387 100644
--- a/sql/sql-batch.c
+++ b/sql/sql-batch.c
@@ -19,11 +19,13 @@
#include "sql-value.h"
/**
- * SECTION: sql_batch
- * @Short_description: represents an SQL statement or a part of it
+ * SECTION: sql-batch
+ * @Short_description: binds identifiers with #SqlObject
* @Title: SqlBatch
*
- * The #SqlBatch is the base class for all objects in SqlLib.
+ * The #SqlBatch is a collection of identifiers bound to #SqlObject in
+ * an SQL statement. These identifiers are replaced by the value represented
+ * by the #SqlObject when the statement is renderend.
**/
G_DEFINE_TYPE (SqlBatch, sql_batch, G_TYPE_INITIALLY_UNOWNED);
diff --git a/vapi/Gvn-1.0.metadata b/vapi/Gvn-1.0.metadata
index 00a0ae8..ced38cf 100644
--- a/vapi/Gvn-1.0.metadata
+++ b/vapi/Gvn-1.0.metadata
@@ -1,7 +1,7 @@
Gvn cheader_filename="gvn/gvn.h"
-value_new_with_content skip=false
-value_get_valist skip=false
+value_new_with_content skip=false parent="Gvn.Value" name="new_with_content"
+value_get_valist skip=false parent="Gvn.Value" name="get_valist"
Param.value_changed#method name="emit_value_changed"
diff --git a/vn/glade/vn-model.c b/vn/glade/vn-model.c
index fff0202..aa249a9 100644
--- a/vn/glade/vn-model.c
+++ b/vn/glade/vn-model.c
@@ -25,12 +25,17 @@ G_DEFINE_TYPE_WITH_CODE (VnModel, vn_model, DB_TYPE_MODEL,
vn_model_buildable_init)
);
-/* GtkBuildable custom tag implementation
- *
+/* GtkBuildable custom tag implementation:
+ *
*
- *
+ *
* ...
*
+ *
+ *
+ *
+ * ...
+ *
*/
typedef struct
diff --git a/vn/gui/main.glade b/vn/gui/main.glade
index d1f6b48..74b0429 100644
--- a/vn/gui/main.glade
+++ b/vn/gui/main.glade
@@ -4,6 +4,8 @@