summaryrefslogtreecommitdiff
path: root/src/raptor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/raptor.h')
-rw-r--r--src/raptor.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/raptor.h b/src/raptor.h
index 5fbc173e..4ae84f82 100644
--- a/src/raptor.h
+++ b/src/raptor.h
@@ -393,7 +393,7 @@ typedef struct {
* @RAPTOR_FEATURE_JSON_EXTRA_DATA: JSON serializer extra top-level data
* @RAPTOR_FEATURE_RSS_TRIPLES: Atom/RSS serializer writes extra RDF triples it finds (none, rdf-xml, atom-triples)
* @RAPTOR_FEATURE_ATOM_ENTRY_URI: Atom entry URI. If given, generate an Atom Entry Document with the item having the given URI, otherwise generate an Atom Feed Document with any items found.
- * @RAPTOR_FEATURE_ALIAS_DEFAULT_NAMESPACE: Integer. If set, generate a prefixed namespace declaration for the default namespace as well as an unprefixed one.
+ * @RAPTOR_FEATURE_PREFIX_ELEMENTS: Integer. If set, generate Atom/RSS1.0 documents with prefixed elements, otherwise unprefixed.
* @RAPTOR_FEATURE_LAST: Internal
*
* Raptor parser, serializer or XML writer features.
@@ -434,8 +434,8 @@ typedef enum {
RAPTOR_FEATURE_JSON_EXTRA_DATA,
RAPTOR_FEATURE_RSS_TRIPLES,
RAPTOR_FEATURE_ATOM_ENTRY_URI,
- RAPTOR_FEATURE_ALIAS_DEFAULT_NAMESPACE,
- RAPTOR_FEATURE_LAST = RAPTOR_FEATURE_ALIAS_DEFAULT_NAMESPACE
+ RAPTOR_FEATURE_PREFIX_ELEMENTS,
+ RAPTOR_FEATURE_LAST = RAPTOR_FEATURE_PREFIX_ELEMENTS
} raptor_feature;