Skip to content

Commit ef25896

Browse files
authored
fix: dbpedia URL to use https instead of http (#2444)
The URL for the service keyword had the http address for the dbpedia endpoint, which no longer works. Changing it to https as that works.
1 parent 900f041 commit ef25896

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/intro_to_sparql.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ The ``SERVICE`` keyword of SPARQL 1.1 can send a query to a remote SPARQL endpoi
140140
"""
141141
SELECT ?s
142142
WHERE {
143-
SERVICE <http://dbpedia.org/sparql> {
143+
SERVICE <https://dbpedia.org/sparql> {
144144
?s a ?o .
145145
}
146146
}

0 commit comments

Comments
 (0)