From d6e2e9c72ea7f289d14adb9c8c3f8ba8e8cb5a00 Mon Sep 17 00:00:00 2001 From: Michael Yuan Date: Sat, 10 Dec 2022 01:13:10 +0800 Subject: [PATCH] Update wasmedge-mysql-nginx/README.md Signed-off-by: Michael Yuan Co-authored-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> Signed-off-by: Michael Yuan --- wasmedge-mysql-nginx/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wasmedge-mysql-nginx/README.md b/wasmedge-mysql-nginx/README.md index 74cc872..9350251 100644 --- a/wasmedge-mysql-nginx/README.md +++ b/wasmedge-mysql-nginx/README.md @@ -108,7 +108,7 @@ When the WasmEdge web service receives a GET request to the `/orders` endpoint, curl http://localhost:8080/orders ``` -When the WasmEdge web service receives a POST request to the `/update_order` endpoint, it would extract the JSON data from the POST body and update the `Order` record in the database table that matches the `order_id` in the input data. +When the WasmEdge web service receives a POST request to the `/update_order` endpoint, it extracts the JSON data from the POST body and update the `Order` record in the database table that matches the `order_id` in the input data. ```bash curl http://localhost:8080/update_order -X POST -d @db/update_order.json