diff --git a/doc/bestPractices/sections/checklist-en.html b/doc/bestPractices/sections/checklist-en.html
index 2bed613..faab43e 100644
--- a/doc/bestPractices/sections/checklist-en.html
+++ b/doc/bestPractices/sections/checklist-en.html
@@ -23,7 +23,7 @@
Example:
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix vann: <http://purl.org/vocab/vann/> .
<https://w3id.org/example> rdf:type owl:Ontology ;
- vann:preferredNamespaceUri <https://w3id.org/example#> .
+ vann:preferredNamespaceUri "https://w3id.org/example" .
Prefix [RECOMMENDED]
@@ -698,7 +698,7 @@ Example:
Status [OPTIONAL]
-Property indicating the usage status of the term. For example, whether the term is mature enough, whether it has been deprecated, curated, etc. Note that some of the properties proposed below, such as obo:IAO_0000114, have as range a set of fixed values. The registry vocabulary proposes a hierarchy of status that may be used to represent terms as well (reg:statusAccepted, reg:statusValid, reg:statusDeprecated, etc.).
+Property indicating the usage status of the term. For example, whether the term is mature enough, whether it has been deprecated, curated, etc. Note that some of the properties proposed below, such as obo:IAO_0000114, have as range a set of fixed values. The registry vocabulary proposes a hierarchy of status that may be used to represent terms as well (reg:statusAccepted, reg:statusValid, reg:statusDeprecated, etc.).
Properties you may use:
diff --git a/doc/metadataGuide/guide.md b/doc/metadataGuide/guide.md
index e3a2099..7fbfe22 100644
--- a/doc/metadataGuide/guide.md
+++ b/doc/metadataGuide/guide.md
@@ -129,7 +129,7 @@ The following `Turtle` code block shows sample annotations for each of the metad
dct:creator "Daniel Garijo"@en ,"Maria Poveda-Villalon"@en ;
dct:license ;
vann:preferredNamespacePrefix "exo"@en ;
- vann:preferredNamespaceUri> "https://w3id.org/example" ;
+ vann:preferredNamespaceUri "https://w3id.org/example" ;
schema:citation "Cite this vocabulary as: Garijo, D. and Poveda-Villalón, M. The example ontology 1.0.1."@en ;
rdfs:comment "An example vocabulary designed to illustrate how to publish vocabularies on the Web following the FAIR principles. This vocabulary describes three simple classes with 3 properties and a data property."@en ;
rdfs:label "Example" ;
@@ -141,7 +141,7 @@ The following `Turtle` code block shows sample annotations for each of the metad
foaf:fundedBy ;
schema:funding ;
widoco:introduction "A paragraph with the introduction section of the documentation about your resource"@en ;
- widoco:rdfxmlSerialization "https://example.org/serialization/ontology.xml"^^xsd:anyURI ;
+ widoco:rdfxmlSerialization "https://example.org/serialization/ontology.xml"^^xsd:anyURI ;
owl:versionInfo "1.0.1" .
#If content negotiation is enabled, the widoco:rdfxmlSerialization annotation may not be needed.
```