Author: jmb
Date: Sun Jul 29 01:27:01 2007
New Revision: 3470
URL:
http://source.netsurf-browser.org?rev=3470&view=rev
Log:
Comment fixes
Modified:
trunk/dom/bindings/xml/xmlbinding.c
trunk/dom/include/dom/bootstrap/implpriv.h
trunk/dom/src/core/implementation.c
Modified: trunk/dom/bindings/xml/xmlbinding.c
URL:
http://source.netsurf-browser.org/trunk/dom/bindings/xml/xmlbinding.c?rev...
==============================================================================
--- trunk/dom/bindings/xml/xmlbinding.c (original)
+++ trunk/dom/bindings/xml/xmlbinding.c Sun Jul 29 01:27:01 2007
@@ -13,7 +13,7 @@
#include "utils.h"
static dom_exception xml_dom_get_dom_implementation(
- struct dom_string *features,
+ struct dom_string *features,
struct dom_implementation **impl, dom_alloc alloc, void *pw);
static dom_exception xml_dom_get_dom_implementation_list(
struct dom_string *features,
@@ -86,7 +86,7 @@
* once it has finished with it.
*/
dom_exception xml_dom_get_dom_implementation(
- struct dom_string *features,
+ struct dom_string *features,
struct dom_implementation **impl, dom_alloc alloc, void *pw)
{
UNUSED(features);
@@ -258,8 +258,8 @@
* Any memory allocated by this call should be allocated using
* the provided memory (de)allocation function.
*
- * The doctype will be referenced, so the client need not do this
- * explicitly. The client must unref the doctype once it has
+ * The document will be referenced, so the client need not do this
+ * explicitly. The client must unref the document once it has
* finished with it.
*/
dom_exception xml_dom_implementation_create_document(
Modified: trunk/dom/include/dom/bootstrap/implpriv.h
URL:
http://source.netsurf-browser.org/trunk/dom/include/dom/bootstrap/implpri...
==============================================================================
--- trunk/dom/include/dom/bootstrap/implpriv.h (original)
+++ trunk/dom/include/dom/bootstrap/implpriv.h Sun Jul 29 01:27:01 2007
@@ -13,7 +13,7 @@
* include this, as those types are defined here.
*
* The Document implementation includes this as it needs the declaration of
- * dom_document_set_doctype.
+ * dom_document_create and dom_document_set_doctype.
*
* No other client should be including this.
*/
@@ -117,8 +117,8 @@
* Any memory allocated by this call should be allocated using
* the provided memory (de)allocation function.
*
- * The doctype will be referenced, so the client need not do this
- * explicitly. The client must unref the doctype once it has
+ * The document will be referenced, so the client need not do this
+ * explicitly. The client must unref the document once it has
* finished with it.
*/
dom_exception (*create_document)(struct dom_implementation *impl,
Modified: trunk/dom/src/core/implementation.c
URL:
http://source.netsurf-browser.org/trunk/dom/src/core/implementation.c?rev...
==============================================================================
--- trunk/dom/src/core/implementation.c (original)
+++ trunk/dom/src/core/implementation.c Sun Jul 29 01:27:01 2007
@@ -117,8 +117,8 @@
* Any memory allocated by this call should be allocated using
* the provided memory (de)allocation function.
*
- * The doctype will be referenced, so the client need not do this
- * explicitly. The client must unref the doctype once it has
+ * The document will be referenced, so the client need not do this
+ * explicitly. The client must unref the document once it has
* finished with it.
*/
dom_exception dom_implementation_create_document(