about summary refs log tree commit diff
diff options
context:
space:
mode:
-rwxr-xr-xload-rdf.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/load-rdf.scm b/load-rdf.scm
index dc0459d..6719bd5 100755
--- a/load-rdf.scm
+++ b/load-rdf.scm
@@ -120,9 +120,9 @@ PROC."
 (define* (put-graph sparql-endpoint username password rdf-file graph #:optional retry?)
   "Load RDF-FILE into GRAPH at SPARQL-ENDPOINT, a SPARQL 1.1 Graph
 Store HTTP Protocol endpoint, authenticating with USERNAME and
-PASSWORD. The PUT method is used, and therefore, any existing data in
-the graph is deleted."
-  (let ((response (http-upload-file 'PUT
+PASSWORD. Note that when the PUT method is used, any existing data in
+the graph is deleted.  Therefore, a POST method is used."
+  (let ((response (http-upload-file 'POST
                                     (build-uri (uri-scheme sparql-endpoint)
                                                #:host (uri-host sparql-endpoint)
                                                #:port (uri-port sparql-endpoint)