From 06412376f5e50c4ed47adcdf330377fb5011cd31 Mon Sep 17 00:00:00 2001 From: Yasuaki Hamano Date: Sat, 5 Dec 2020 12:18:38 +0900 Subject: [PATCH] Update README.md Unnecessary `.` was inserted in the example of curl command. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c891a6d..63cbcb5 100644 --- a/README.md +++ b/README.md @@ -129,7 +129,7 @@ This runs the image as a container and starts up an endpoint locally at `http:// 3) Post an event to the following endpoint using a curl command: ```shell script -curl -XPOST "http://localhost:9000/2015-03-31/functions/function/invocations" -d '{}'. +curl -XPOST "http://localhost:9000/2015-03-31/functions/function/invocations" -d '{}' ``` This command invokes the function running in the container image and returns a response.