[libgda] documentation: Fix some minor typos.



commit f0a7dc9e8e4db658ccd59541b1073218e46cb2bc
Author: Gergely Polonkai <gergely polonkai eu>
Date:   Thu Apr 30 10:29:46 2015 +0200

    documentation: Fix some minor typos.
    
    Bug #733450

 doc/C/examples/full_example.c           |    2 +-
 libgda/gda-connection.h                 |    2 +-
 samples/DDL/ddl.c                       |    2 +-
 samples/SimpleExample/example.c         |    2 +-
 samples/SimpleUIForm/example.c          |    2 +-
 samples/WritableSelect/example.c        |    2 +-
 tools/browser/query-exec/query-editor.c |    2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/doc/C/examples/full_example.c b/doc/C/examples/full_example.c
index 6e8e925..0709264 100644
--- a/doc/C/examples/full_example.c
+++ b/doc/C/examples/full_example.c
@@ -61,7 +61,7 @@ open_connection ()
 
        /* create an SQL parser */
        parser = gda_connection_create_parser (cnc);
-       if (!parser) /* @cnc doe snot provide its own parser => use default one */
+       if (!parser) /* @cnc does not provide its own parser => use default one */
                parser = gda_sql_parser_new ();
        /* attach the parser object to the connection */
        g_object_set_data_full (G_OBJECT (cnc), "parser", parser, g_object_unref);
diff --git a/libgda/gda-connection.h b/libgda/gda-connection.h
index 696640b..d8c17fc 100644
--- a/libgda/gda-connection.h
+++ b/libgda/gda-connection.h
@@ -174,7 +174,7 @@ struct _GdaConnectionClass {
  *
  * Note about the @GDA_CONNECTION_OPTIONS_AUTO_META_DATA flag:
  * <itemizedlist>
- *  <listitem><para>Every time a DDL statement is successfully executed, the associated mate data, if
+ *  <listitem><para>Every time a DDL statement is successfully executed, the associated meta data, if
               defined, will be updated, which has a impact on performances</para></listitem>
  *  <listitem><para>If a transaction is started and some DDL statements are executed and the transaction
  *            is not rolled back or committed, then the meta data may end up being wrong</para></listitem>
diff --git a/samples/DDL/ddl.c b/samples/DDL/ddl.c
index d0e7d52..a445973 100644
--- a/samples/DDL/ddl.c
+++ b/samples/DDL/ddl.c
@@ -138,7 +138,7 @@ display_products_contents (GdaConnection *cnc)
        GdaSqlParser *parser;
 
        parser = gda_connection_create_parser (cnc);
-        if (!parser) /* @cnc doe snot provide its own parser => use default one */
+        if (!parser) /* @cnc does not provide its own parser => use default one */
                 parser = gda_sql_parser_new ();
 
        stmt = gda_sql_parser_parse_string (parser, sql, NULL, NULL);
diff --git a/samples/SimpleExample/example.c b/samples/SimpleExample/example.c
index 485a8dd..863c57e 100644
--- a/samples/SimpleExample/example.c
+++ b/samples/SimpleExample/example.c
@@ -75,7 +75,7 @@ open_connection ()
 
        /* create an SQL parser */
        parser = gda_connection_create_parser (cnc);
-       if (!parser) /* @cnc doe snot provide its own parser => use default one */
+       if (!parser) /* @cnc does not provide its own parser => use default one */
                parser = gda_sql_parser_new ();
        /* attach the parser object to the connection */
        g_object_set_data_full (G_OBJECT (cnc), "parser", parser, g_object_unref);
diff --git a/samples/SimpleUIForm/example.c b/samples/SimpleUIForm/example.c
index dfa4803..2af9102 100644
--- a/samples/SimpleUIForm/example.c
+++ b/samples/SimpleUIForm/example.c
@@ -121,7 +121,7 @@ open_connection ()
 
        /* create an SQL parser */
        parser = gda_connection_create_parser (cnc);
-       if (!parser) /* @cnc doe snot provide its own parser => use default one */
+       if (!parser) /* @cnc does not provide its own parser => use default one */
                parser = gda_sql_parser_new ();
        /* attach the parser object to the connection */
        g_object_set_data_full (G_OBJECT (cnc), "parser", parser, g_object_unref);
diff --git a/samples/WritableSelect/example.c b/samples/WritableSelect/example.c
index e9efb4c..25a17a3 100644
--- a/samples/WritableSelect/example.c
+++ b/samples/WritableSelect/example.c
@@ -177,7 +177,7 @@ open_connection ()
 
        /* create an SQL parser */
        parser = gda_connection_create_parser (cnc);
-       if (!parser) /* @cnc doe snot provide its own parser => use default one */
+       if (!parser) /* @cnc does not provide its own parser => use default one */
                parser = gda_sql_parser_new ();
        /* attach the parser object to the connection */
        g_object_set_data_full (G_OBJECT (cnc), "parser", parser, g_object_unref);
diff --git a/tools/browser/query-exec/query-editor.c b/tools/browser/query-exec/query-editor.c
index 5f33b51..56eef47 100644
--- a/tools/browser/query-exec/query-editor.c
+++ b/tools/browser/query-exec/query-editor.c
@@ -1516,7 +1516,7 @@ query_editor_get_current_history_batch (QueryEditor *editor)
  * query_editor_history_is_empty
  * @editor: a #QueryEditor widget.
  *
- * Returns: %TRUE if @editor doe snot have any history item
+ * Returns: %TRUE if @editor does not have any history item
  */
 gboolean
 query_editor_history_is_empty (QueryEditor *editor)


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