This repository was archived by the owner on Jan 17, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ in [samples/demo.js](samples/demo.js):
58
58
``` javascript
59
59
composer .if (
60
60
composer .action (' authenticate' , { action : function main ({ password }) { return { value: password === ' abc123' } } }),
61
- composer .action (' success' , { action: funcßtion main () { return { message: ' success' } } }),
61
+ composer .action (' success' , { action : function main () { return { message: ' success' } } }),
62
62
composer .action (' failure' , { action : function main () { return { message: ' failure' } } }))
63
63
```
64
64
Composer offers traditional control-flow concepts as methods. These methods
@@ -90,7 +90,7 @@ wsk action invoke demo -r -p password passw0rd
90
90
```
91
91
```
92
92
{
93
- message: "failure"
93
+ " message" : "failure"
94
94
}
95
95
```
96
96
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ in [samples/demo.js](samples/demo.js):
19
19
``` javascript
20
20
composer .if (
21
21
composer .action (' authenticate' , { action : function main ({ password }) { return { value: password === ' abc123' } } }),
22
- composer .action (' success' , { action: funcßtion main () { return { message: ' success' } } }),
22
+ composer .action (' success' , { action : function main () { return { message: ' success' } } }),
23
23
composer .action (' failure' , { action : function main () { return { message: ' failure' } } }))
24
24
```
25
25
Composer offers traditional control-flow concepts as methods. These methods
@@ -51,7 +51,7 @@ wsk action invoke demo -r -p password passw0rd
51
51
```
52
52
```
53
53
{
54
- message: "failure"
54
+ " message" : "failure"
55
55
}
56
56
```
57
57
An invocation of a composition creates a series of activation records:
You can’t perform that action at this time.
0 commit comments