This is an automated email from the ASF dual-hosted git repository.
dgrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-runtime-swift.git
The following commit(s) were added to refs/heads/master by this push:
new e94a339 chore: fix JSON examples in the README (#133)
e94a339 is described below
commit e94a339727fc3d6511964d11c8a4ff33052019d1
Author: John Bampton <[email protected]>
AuthorDate: Wed Mar 31 23:53:17 2021 +1000
chore: fix JSON examples in the README (#133)
---
README.md | 30 ++++++++++++++++--------------
1 file changed, 16 insertions(+), 14 deletions(-)
diff --git a/README.md b/README.md
index 62cdfc7..9838634 100644
--- a/README.md
+++ b/README.md
@@ -113,13 +113,14 @@ wsk action invoke helloCodableError -b -p id 51 -p name
Carlos
```
```json
{
-"name": "helloCodableError",
-"response": {
- "result": {
- "error": "insufficientFunds(5)"
- },
-"status": "application error",
-"success": false
+ "name": "helloCodableError",
+ "response": {
+ "result": {
+ "error": "insufficientFunds(5)"
+ },
+ "status": "application error",
+ "success": false
+ }
}
```
@@ -212,13 +213,14 @@ wsk action invoke helloCodableError -b -p id 42 -p name
Carlos
```
```json
{
-"name": "helloCodableError",
-"response": {
- "result": {
- "error": "insufficientFunds(5)"
- },
-"status": "application error",
-"success": false
+ "name": "helloCodableError",
+ "response": {
+ "result": {
+ "error": "insufficientFunds(5)"
+ },
+ "status": "application error",
+ "success": false
+ }
}
```