Skip to content

Commit cfa995f

Browse files
authored
MINOR: Fix DOAP syntax (apache#16472)
xmlns strings need to match exactly, and these vocabularies are defined with `http` namespace strings, so we need to follow that. Reviewers: Mickael Maison <[email protected]>
1 parent 1ffe42b commit cfa995f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doap_Kafka.rdf

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<?xml-stylesheet type="text/xsl"?>
33
<rdf:RDF xml:lang="en"
44
xmlns="http://usefulinc.com/ns/doap#"
5-
xmlns:rdf="https://www.w3.org/1999/02/22-rdf-syntax-ns#"
6-
xmlns:asfext="https://projects.apache.org/ns/asfext#"
7-
xmlns:foaf="https://xmlns.com/foaf/0.1/">
5+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6+
xmlns:asfext="http://projects.apache.org/ns/asfext#"
7+
xmlns:foaf="http://xmlns.com/foaf/0.1/">
88
<!--
99
Licensed to the Apache Software Foundation (ASF) under one or more
1010
contributor license agreements. See the NOTICE file distributed with

0 commit comments

Comments
 (0)