Fix curl examples to use GET with -d

Closes gh-1190
This commit is contained in:
Stephane Nicoll
2021-03-05 10:50:17 +01:00
parent 3844fb313f
commit e02633c862
3 changed files with 7 additions and 7 deletions

View File

@@ -872,7 +872,7 @@ those two ids are displayed in the capabilities of the service):
[source]
----
$ curl http://localhost:8080/starter.zip -d dependencies=web,devtools \
$ curl -G http://localhost:8080/starter.zip -d dependencies=web,devtools \
-d bootVersion=2.3.5.RELEASE -o my-project.zip
----