Skip to content

Commit

Permalink
fix: dbpedia URL to use https instead of http (#2444)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
miselico committed Jun 13, 2023
1 parent 900f041 commit ef25896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/intro_to_sparql.rst
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ The ``SERVICE`` keyword of SPARQL 1.1 can send a query to a remote SPARQL endpoi
"""
SELECT ?s
WHERE {
SERVICE <http://dbpedia.org/sparql> {
SERVICE <https://dbpedia.org/sparql> {
?s a ?o .
}
}
Expand Down

0 comments on commit ef25896

Please sign in to comment.