summaryrefslogtreecommitdiff
path: root/rdflib
diff options
context:
space:
mode:
authorNicholas Car <nick@kurrawong.net>2022-12-05 06:38:56 +0800
committerGitHub <noreply@github.com>2022-12-04 23:38:56 +0100
commit897d14e692714d2ce66a53d444ea797241fc7115 (patch)
treed493bb9d1b9f0b9cd8c4c1872c26ad13d38a7d86 /rdflib
parentf9d7132d042be61690954d8a0678863498ae1f9c (diff)
downloadrdflib-897d14e692714d2ce66a53d444ea797241fc7115.tar.gz
fix: DCTERMS prefix typo (#2173)
The standard prefix for DCTERMS is incorrectly cdterms but it should be dcterms. This is most likely a typo I made some time ago... Fixing now.
Diffstat (limited to 'rdflib')
-rw-r--r--rdflib/namespace/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rdflib/namespace/__init__.py b/rdflib/namespace/__init__.py
index 1d0db01a..98c8d3a6 100644
--- a/rdflib/namespace/__init__.py
+++ b/rdflib/namespace/__init__.py
@@ -364,7 +364,7 @@ class NamespaceManager(object):
* rdflib:
* binds all the namespaces shipped with RDFLib as DefinedNamespace instances
* all the core namespaces and all the following: brick, csvw, dc, dcat
- * dcmitype, cdterms, dcam, doap, foaf, geo, odrl, org, prof, prov, qb, sdo
+ * dcmitype, dcterms, dcam, doap, foaf, geo, odrl, org, prof, prov, qb, sdo
* sh, skos, sosa, ssn, time, vann, void
* see the NAMESPACE_PREFIXES_RDFLIB object for the up-to-date list
* none:
@@ -898,7 +898,7 @@ _NAMESPACE_PREFIXES_RDFLIB = {
"dc": DC,
"dcat": DCAT,
"dcmitype": DCMITYPE,
- "cdterms": DCTERMS,
+ "dcterms": DCTERMS,
"dcam": DCAM,
"doap": DOAP,
"foaf": FOAF,