]> mj.ucw.cz Git - libucw.git/blobdiff - sherlock/xml/dtd.h
bgetl() should return uns instead of u32
[libucw.git] / sherlock / xml / dtd.h
index ba57ee35221b14932868c226c3516f13d6768662..c031d348df84c96f9664fac0c5881c519a04e9f2 100644 (file)
@@ -15,7 +15,7 @@
 struct xml_dtd {
   struct mempool *pool;                        /* Memory pool where to allocate DTD */
   slist ents;                          /* Link list of general entities */
-  slist pents;                         /* Link list of parapeter entities */
+  slist pents;                         /* Link list of parameter entities */
   slist notns;                         /* Link list of notations */
   slist elems;                         /* Link list of elements */
   void *tab_ents;                      /* Hash table of general entities */
@@ -31,7 +31,7 @@ struct xml_dtd {
 /* Notations */
 
 enum xml_dtd_notn_flags {
-  XML_DTD_NOTN_DECLARED = 0x1,         /* The notation has been declared (interbal usage) */
+  XML_DTD_NOTN_DECLARED = 0x1,         /* The notation has been declared (internal usage) */
 };
 
 struct xml_dtd_notn {