[libgda] Correct spelling errors.



commit 26e46b13042587f29834d23803a1cab23fb297cb
Author: Bas Driessen <bas driessen xobas com>
Date:   Tue Aug 18 20:18:30 2009 +1000

    Correct spelling errors.

 doc/C/prov-writing.xml                             |    2 +-
 libgda/sql-parser/gda-statement-struct-compound.c  |    2 +-
 libgda/sql-parser/gda-statement-struct-delete.c    |    4 ++--
 libgda/sql-parser/gda-statement-struct-insert.c    |   12 ++++++------
 libgda/sql-parser/gda-statement-struct-pspec.c     |    8 ++++----
 libgda/sql-parser/gda-statement-struct-select.c    |   16 ++++++++--------
 libgda/sql-parser/gda-statement-struct-trans.c     |    4 ++--
 libgda/sql-parser/gda-statement-struct-unknown.c   |    2 +-
 libgda/sql-parser/gda-statement-struct-update.c    |    8 ++++----
 libgda/sqlite/gda-sqlite-recordset.c               |    2 +-
 libgda/sqlite/sqlite-src/sqlite3.c                 |    6 +++---
 providers/firebird/gda-firebird-recordset.c        |    2 +-
 providers/jdbc/gda-jdbc-recordset.c                |    2 +-
 providers/mysql/gda-mysql-recordset.c              |    2 +-
 providers/oracle/gda-oracle-recordset.c            |    2 +-
 .../skel-implementation/capi/gda-capi-recordset.c  |    2 +-
 16 files changed, 38 insertions(+), 38 deletions(-)
---
diff --git a/doc/C/prov-writing.xml b/doc/C/prov-writing.xml
index a6bfbc9..568f246 100644
--- a/doc/C/prov-writing.xml
+++ b/doc/C/prov-writing.xml
@@ -686,7 +686,7 @@ gboolean (*key_columns)  (GdaServerProvider *, GdaConnection *, GdaMetaStore *,
   </para>
   <para>
     &LIBGDA; encapsulates all blob operations in objects which must be implemented by each provider if they want to support
-    blobs; otherwise binary data may still be used if supported by the database, but the whole binary data is transfered in
+    blobs; otherwise binary data may still be used if supported by the database, but the whole binary data is transferred in
     the SQL statement which is not suitable for large data.
   </para>
   <para>
diff --git a/libgda/sql-parser/gda-statement-struct-compound.c b/libgda/sql-parser/gda-statement-struct-compound.c
index e5753e0..886e12c 100644
--- a/libgda/sql-parser/gda-statement-struct-compound.c
+++ b/libgda/sql-parser/gda-statement-struct-compound.c
@@ -140,7 +140,7 @@ _gda_sql_statement_compound_serialize (gpointer stmt)
  * @stmt: a #GdaSqlStatement pointer
  * @s: a #GdaSqlStatement pointer
  *
- * Adds the @s sub-statement to the @stmt compound statement. @s's reference is transfered to
+ * Adds the @s sub-statement to the @stmt compound statement. @s's reference is transferred to
  * @stmt (which means @stmt is then responsible to freeing it when no longer needed).
  */
 void
diff --git a/libgda/sql-parser/gda-statement-struct-delete.c b/libgda/sql-parser/gda-statement-struct-delete.c
index a6903e6..d234488 100644
--- a/libgda/sql-parser/gda-statement-struct-delete.c
+++ b/libgda/sql-parser/gda-statement-struct-delete.c
@@ -122,7 +122,7 @@ gda_sql_statement_delete_serialize (gpointer stmt)
  * @stmt: a #GdaSqlStatement pointer
  * @value: a table name as a G_TYPE_STRING #GValue 
  *
- * Sets the name of the table to delete from in @stmt. @value's responsibility is transfered to
+ * Sets the name of the table to delete from in @stmt. @value's responsibility is transferred to
  * @stmt (which means @stmt is then responsible to freeing it when no longer needed).
  */
 void
@@ -140,7 +140,7 @@ gda_sql_statement_delete_take_table_name (GdaSqlStatement *stmt, GValue *value)
  * @stmt: a #GdaSqlStatement pointer
  * @cond: the WHERE condition of the DELETE statement, as a #GdaSqlExpr 
  *
- * Sets the WHERE condition of @stmt. @cond's responsibility is transfered to
+ * Sets the WHERE condition of @stmt. @cond's responsibility is transferred to
  * @stmt (which means @stmt is then responsible to freeing it when no longer needed).
  */
 void 
diff --git a/libgda/sql-parser/gda-statement-struct-insert.c b/libgda/sql-parser/gda-statement-struct-insert.c
index 3641694..8402aa7 100644
--- a/libgda/sql-parser/gda-statement-struct-insert.c
+++ b/libgda/sql-parser/gda-statement-struct-insert.c
@@ -222,7 +222,7 @@ gda_sql_statement_insert_serialize (gpointer stmt)
  * @stmt: a #GdaSqlStatement pointer
  * @value: name of the table to insert into, as a G_TYPE_STRING #GValue
  *
- * Sets the name of the table to insert into in @stmt. @value's responsibility is transfered to
+ * Sets the name of the table to insert into in @stmt. @value's responsibility is transferred to
  * @stmt (which means @stmt is then responsible to freeing it when no longer needed).
  */
 void
@@ -240,7 +240,7 @@ gda_sql_statement_insert_take_table_name (GdaSqlStatement *stmt, GValue *value)
  * @stmt: a #GdaSqlStatement pointer
  * @value: name of the resolution conflict algorithm, as a G_TYPE_STRING #GValue
  *
- * Sets the name of the resolution conflict algorithm used by @stmt. @value's responsibility is transfered to
+ * Sets the name of the resolution conflict algorithm used by @stmt. @value's responsibility is transferred to
  * @stmt (which means @stmt is then responsible to freeing it when no longer needed).
  */
 void
@@ -260,7 +260,7 @@ gda_sql_statement_insert_take_on_conflict (GdaSqlStatement *stmt, GValue *value)
  * @list: a list of #GdaSqlField pointers
  *
  * Sets the list of fields for which values will be specified in @stmt. @list's 
- * responsibility is transfered to
+ * responsibility is transferred to
  * @stmt (which means @stmt is then responsible to freeing it when no longer needed).
  */
 void
@@ -280,7 +280,7 @@ gda_sql_statement_insert_take_fields_list (GdaSqlStatement *stmt, GSList *list)
  * @list: a list of #GdaSqlExpr pointers
  *
  * Sets a list of values to be inserted by @stmt. @list's 
- * responsibility is transfered to
+ * responsibility is transferred to
  * @stmt (which means @stmt is then responsible to freeing it when no longer needed).
  */
 void
@@ -300,7 +300,7 @@ gda_sql_statement_insert_take_1_values_list (GdaSqlStatement *stmt, GSList *list
  * @list: a list of #GSQliet of #GdaSqlExpr pointers
  *
  * Sets a list of list of values to be inserted by @stmt. @list's 
- * responsibility is transfered to
+ * responsibility is transferred to
  * @stmt (which means @stmt is then responsible to freeing it when no longer needed).
  */
 void
@@ -322,7 +322,7 @@ gda_sql_statement_insert_take_extra_values_list (GdaSqlStatement *stmt, GSList *
  * @select: a SELECT #GdaSqlStatement pointer
  *
  * Specifies a SELECT statement, the values inserted will be the result set of @select. @select's 
- * responsibility is transfered to
+ * responsibility is transferred to
  * @stmt (which means @stmt is then responsible to freeing it when no longer needed).
  */
 void
diff --git a/libgda/sql-parser/gda-statement-struct-pspec.c b/libgda/sql-parser/gda-statement-struct-pspec.c
index 74106ac..efac75b 100644
--- a/libgda/sql-parser/gda-statement-struct-pspec.c
+++ b/libgda/sql-parser/gda-statement-struct-pspec.c
@@ -28,7 +28,7 @@
  * @pspec: a #GdaSqlParamSpec pointer
  * @value: a G_TYPE_STRING #GValue
  *
- * Sets @pspec's name. @value's responsibility is transfered to
+ * Sets @pspec's name. @value's responsibility is transferred to
  * @pspec (which means @pspec is then responsible to freeing it when no longer needed).
  */
 void
@@ -50,7 +50,7 @@ gda_sql_param_spec_take_name (GdaSqlParamSpec *pspec, GValue *value)
  * @pspec: a #GdaSqlParamSpec pointer
  * @value: a G_TYPE_STRING #GValue
  *
- * Sets @pspec's description. @value's responsibility is transfered to
+ * Sets @pspec's description. @value's responsibility is transferred to
  * @pspec (which means @pspec is then responsible to freeing it when no longer needed).
  */
 void
@@ -72,7 +72,7 @@ gda_sql_param_spec_take_descr (GdaSqlParamSpec *pspec, GValue *value)
  * @pspec: a #GdaSqlParamSpec pointer
  * @value: a G_TYPE_STRING #GValue. 
  *
- * Sets @pspec's ability of being NULL. @value's responsibility is transfered to
+ * Sets @pspec's ability of being NULL. @value's responsibility is transferred to
  * @pspec (which means @pspec is then responsible to freeing it when no longer needed).
  *
  * If @value's string starts by 't' or 'T' then @pspec will be allowed to be %NULL
@@ -98,7 +98,7 @@ gda_sql_param_spec_take_nullok (GdaSqlParamSpec *pspec, GValue *value)
  * @pspec: a #GdaSqlParamSpec pointer
  * @value: a G_TYPE_STRING #GValue
  *
- * Sets @pspec's data type. @value's responsibility is transfered to
+ * Sets @pspec's data type. @value's responsibility is transferred to
  * @pspec (which means @pspec is then responsible to freeing it when no longer needed).
  *
  * @value must represent a data type, as understood by gda_g_type_from_string().
diff --git a/libgda/sql-parser/gda-statement-struct-select.c b/libgda/sql-parser/gda-statement-struct-select.c
index 41b9e66..cd284f6 100644
--- a/libgda/sql-parser/gda-statement-struct-select.c
+++ b/libgda/sql-parser/gda-statement-struct-select.c
@@ -244,7 +244,7 @@ _gda_sql_statement_select_serialize (gpointer stmt)
  *
  * Sets the DISTINCT clause of @stmt. 
  *
- * @distinct_expr's responsibility is transfered to
+ * @distinct_expr's responsibility is transferred to
  * @stmt (which means @stmt is then responsible to freeing it when no longer needed).
  */
 void
@@ -263,7 +263,7 @@ gda_sql_statement_select_take_distinct (GdaSqlStatement *stmt, gboolean distinct
  *
  * Sets list of expressions selected by @stmt
  *
- * @expr_list's responsibility is transfered to
+ * @expr_list's responsibility is transferred to
  * @stmt (which means @stmt is then responsible to freeing it when no longer needed).
  */
 void
@@ -283,7 +283,7 @@ gda_sql_statement_select_take_expr_list (GdaSqlStatement *stmt, GSList *expr_lis
  *
  * Sets the FROM clause of @stmt
  *
- * @from's responsibility is transfered to
+ * @from's responsibility is transferred to
  * @stmt (which means @stmt is then responsible to freeing it when no longer needed).
  */
 void
@@ -301,7 +301,7 @@ gda_sql_statement_select_take_from (GdaSqlStatement *stmt, GdaSqlSelectFrom *fro
  *
  * Sets the WHERE clause of @stmt
  *
- * @expr's responsibility is transfered to
+ * @expr's responsibility is transferred to
  * @stmt (which means @stmt is then responsible to freeing it when no longer needed).
  */
 void
@@ -319,7 +319,7 @@ gda_sql_statement_select_take_where_cond (GdaSqlStatement *stmt, GdaSqlExpr *exp
  *
  * Sets the GROUP BY clause of @stmt
  *
- * @group_by's responsibility is transfered to
+ * @group_by's responsibility is transferred to
  * @stmt (which means @stmt is then responsible to freeing it when no longer needed).
  */
 void
@@ -339,7 +339,7 @@ gda_sql_statement_select_take_group_by (GdaSqlStatement *stmt, GSList *group_by)
  *
  * Sets the HAVING clause of @stmt
  *
- * @expr's responsibility is transfered to
+ * @expr's responsibility is transferred to
  * @stmt (which means @stmt is then responsible to freeing it when no longer needed).
  */
 void
@@ -357,7 +357,7 @@ gda_sql_statement_select_take_having_cond (GdaSqlStatement *stmt, GdaSqlExpr *ex
  *
  * Sets the ORDER BY clause of @stmt
  *
- * @order_by's responsibility is transfered to
+ * @order_by's responsibility is transferred to
  * @stmt (which means @stmt is then responsible to freeing it when no longer needed).
  */
 void
@@ -378,7 +378,7 @@ gda_sql_statement_select_take_order_by (GdaSqlStatement *stmt, GSList *order_by)
  *
  * Sets the LIMIT clause of @stmt
  *
- * @count and @offset's responsibility are transfered to
+ * @count and @offset's responsibility are transferred to
  * @stmt (which means @stmt is then responsible to freeing them when no longer needed).
  */
 void
diff --git a/libgda/sql-parser/gda-statement-struct-trans.c b/libgda/sql-parser/gda-statement-struct-trans.c
index a302fde..3a087d8 100644
--- a/libgda/sql-parser/gda-statement-struct-trans.c
+++ b/libgda/sql-parser/gda-statement-struct-trans.c
@@ -224,7 +224,7 @@ gda_sql_statement_trans_serialize (gpointer stmt)
  *
  * Sets the name of the transaction
  *
- * @value's responsibility is transfered to
+ * @value's responsibility is transferred to
  * @stmt (which means @stmt is then responsible to freeing it when no longer needed).
  */
 void
@@ -249,7 +249,7 @@ gda_sql_statement_trans_take_name (GdaSqlStatement *stmt, GValue *value)
  *
  * Sets the model of the transaction
  *
- * @value's responsibility is transfered to
+ * @value's responsibility is transferred to
  * @stmt (which means @stmt is then responsible to freeing it when no longer needed).
  */
 void
diff --git a/libgda/sql-parser/gda-statement-struct-unknown.c b/libgda/sql-parser/gda-statement-struct-unknown.c
index 41b2af9..68224ab 100644
--- a/libgda/sql-parser/gda-statement-struct-unknown.c
+++ b/libgda/sql-parser/gda-statement-struct-unknown.c
@@ -112,7 +112,7 @@ gda_sql_statement_unknown_serialize (gpointer stmt)
  * Sets @stmt's list of expressions
  *
  * @expressions's 
- * responsibility is transfered to
+ * responsibility is transferred to
  * @stmt (which means @stmt is then responsible to freeing it when no longer needed).
  */
 void
diff --git a/libgda/sql-parser/gda-statement-struct-update.c b/libgda/sql-parser/gda-statement-struct-update.c
index a3891ac..d375e73 100644
--- a/libgda/sql-parser/gda-statement-struct-update.c
+++ b/libgda/sql-parser/gda-statement-struct-update.c
@@ -191,7 +191,7 @@ gda_sql_statement_update_serialize (gpointer stmt)
  *
  * Sets the name of the table to delete from in @stmt.
  *
- * @value's responsibility is transfered to
+ * @value's responsibility is transferred to
  * @stmt (which means @stmt is then responsible to freeing it when no longer needed).
  */
 void
@@ -209,7 +209,7 @@ gda_sql_statement_update_take_table_name (GdaSqlStatement *stmt, GValue *value)
  * @stmt: a #GdaSqlStatement pointer
  * @value: name of the resolution conflict algorithm, as a G_TYPE_STRING #GValue
  *
- * Sets the name of the resolution conflict algorithm used by @stmt. @value's responsibility is transfered to
+ * Sets the name of the resolution conflict algorithm used by @stmt. @value's responsibility is transferred to
  * @stmt (which means @stmt is then responsible to freeing it when no longer needed).
  */
 void
@@ -230,7 +230,7 @@ gda_sql_statement_update_take_on_conflict (GdaSqlStatement *stmt, GValue *value)
  *
  * Sets the WHERE clause of @stmt
  *
- * @expr's responsibility is transfered to
+ * @expr's responsibility is transferred to
  * @stmt (which means @stmt is then responsible to freeing it when no longer needed).
  */
 void 
@@ -250,7 +250,7 @@ gda_sql_statement_update_take_condition (GdaSqlStatement *stmt, GdaSqlExpr *cond
  *
  * Specifies that the field named @fname will be updated with the expression @expr.
  *
- * @fname and @expr's responsibility are transfered to
+ * @fname and @expr's responsibility are transferred to
  * @stmt (which means @stmt is then responsible to freeing them when no longer needed).
  */
 void
diff --git a/libgda/sqlite/gda-sqlite-recordset.c b/libgda/sqlite/gda-sqlite-recordset.c
index b6094e1..9745b66 100644
--- a/libgda/sqlite/gda-sqlite-recordset.c
+++ b/libgda/sqlite/gda-sqlite-recordset.c
@@ -181,7 +181,7 @@ read_rows_to_init_col_types (GdaSqliteRecordset *model)
 }
 
 /*
- * the @ps struct is modified and transfered to the new data model created in
+ * the @ps struct is modified and transferred to the new data model created in
  * this function
  */
 GdaDataModel *
diff --git a/libgda/sqlite/sqlite-src/sqlite3.c b/libgda/sqlite/sqlite-src/sqlite3.c
index a6567db..f401753 100644
--- a/libgda/sqlite/sqlite-src/sqlite3.c
+++ b/libgda/sqlite/sqlite-src/sqlite3.c
@@ -39718,7 +39718,7 @@ static int accessPayload(
 
 /*
 ** Read part of the key associated with cursor pCur.  Exactly
-** "amt" bytes will be transfered into pBuf[].  The transfer
+** "amt" bytes will be transferred into pBuf[].  The transfer
 ** begins at "offset".
 **
 ** Return SQLITE_OK on success or an error code if anything goes
@@ -39744,7 +39744,7 @@ SQLITE_PRIVATE int sqlite3BtreeKey(BtCursor *pCur, u32 offset, u32 amt, void *pB
 
 /*
 ** Read part of the data associated with cursor pCur.  Exactly
-** "amt" bytes will be transfered into pBuf[].  The transfer
+** "amt" bytes will be transferred into pBuf[].  The transfer
 ** begins at "offset".
 **
 ** Return SQLITE_OK on success or an error code if anything goes
@@ -70028,7 +70028,7 @@ static int xferCompatibleIndex(Index *pDest, Index *pSrc){
 **
 ** This method for implementing the INSERT transfers raw records from
 ** tab2 over to tab1.  The columns are not decoded.  Raw records from
-** the indices of tab2 are transfered to tab1 as well.  In so doing,
+** the indices of tab2 are transferred to tab1 as well.  In so doing,
 ** the resulting tab1 has much less fragmentation.
 **
 ** This routine returns TRUE if the optimization is attempted.  If any
diff --git a/providers/firebird/gda-firebird-recordset.c b/providers/firebird/gda-firebird-recordset.c
index 3c31661..359889b 100644
--- a/providers/firebird/gda-firebird-recordset.c
+++ b/providers/firebird/gda-firebird-recordset.c
@@ -134,7 +134,7 @@ gda_firebird_recordset_get_type (void)
 }
 
 /*
- * the @ps struct is modified and transfered to the new data model created in
+ * the @ps struct is modified and transferred to the new data model created in
  * this function
  */
 GdaDataModel *
diff --git a/providers/jdbc/gda-jdbc-recordset.c b/providers/jdbc/gda-jdbc-recordset.c
index a38fb49..7eb891a 100644
--- a/providers/jdbc/gda-jdbc-recordset.c
+++ b/providers/jdbc/gda-jdbc-recordset.c
@@ -208,7 +208,7 @@ jdbc_type_to_g_type (gint jdbc_type)
 }
 
 /*
- * the @ps struct is modified and transfered to the new data model created in
+ * the @ps struct is modified and transferred to the new data model created in
  * this function
  */
 GdaDataModel *
diff --git a/providers/mysql/gda-mysql-recordset.c b/providers/mysql/gda-mysql-recordset.c
index ccd1c6e..cf33651 100644
--- a/providers/mysql/gda-mysql-recordset.c
+++ b/providers/mysql/gda-mysql-recordset.c
@@ -380,7 +380,7 @@ _gda_mysql_type_to_gda (MysqlConnectionData    *cdata,
 
 
 /*
- * the @ps struct is modified and transfered to the new data model created in
+ * the @ps struct is modified and transferred to the new data model created in
  * this function
  */
 GdaDataModel *
diff --git a/providers/oracle/gda-oracle-recordset.c b/providers/oracle/gda-oracle-recordset.c
index 121cccb..bbf6b18 100644
--- a/providers/oracle/gda-oracle-recordset.c
+++ b/providers/oracle/gda-oracle-recordset.c
@@ -172,7 +172,7 @@ ora_def_callback (GdaOracleValue *ora_value,
 }
 
 /*
- * the @ps struct is modified and transfered to the new data model created in
+ * the @ps struct is modified and transferred to the new data model created in
  * this function
  */
 GdaDataModel *
diff --git a/providers/skel-implementation/capi/gda-capi-recordset.c b/providers/skel-implementation/capi/gda-capi-recordset.c
index 9123343..6b378e9 100644
--- a/providers/skel-implementation/capi/gda-capi-recordset.c
+++ b/providers/skel-implementation/capi/gda-capi-recordset.c
@@ -134,7 +134,7 @@ gda_capi_recordset_get_type (void)
 }
 
 /*
- * the @ps struct is modified and transfered to the new data model created in
+ * the @ps struct is modified and transferred to the new data model created in
  * this function
  */
 GdaDataModel *



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]