This repository was archived by the owner on Jun 2, 2020. It is now read-only.
File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ This will create a new application in the `./hello` directory with a module name
150
150
Use the ` cargo func new ` command to create a new HTTP-triggered Azure Function named ` hello ` :
151
151
152
152
``` bash
153
- cargo func new http -n hello
153
+ cargo func new http hello
154
154
```
155
155
156
156
The source for the function will be in ` src/functions/hello.rs ` .
Original file line number Diff line number Diff line change 17
17
//! Create a HTTP-triggered function:
18
18
//!
19
19
//! ```bash
20
- //! $ cargo func new http -n hello
20
+ //! $ cargo func new http hello
21
21
//! ```
22
22
//!
23
23
//! This generates `src/functions/hello.rs` with the following contents:
Original file line number Diff line number Diff line change 6
6
//!
7
7
//! * [Blob trigger](bindings/struct.BlobTrigger.html)
8
8
//! * [Cosmos DB trigger](bindings/struct.CosmosDbTrigger.html)
9
- //! * [Durable Activity trigger](bindings/struct.DurableOrchestrationContext .html)
9
+ //! * [Durable Activity trigger](bindings/struct.DurableActivityContext .html)
10
10
//! * [Durable Orchestration trigger](bindings/struct.DurableOrchestrationContext.html)
11
11
//! * [Event Grid trigger](bindings/struct.EventGridEvent.html)
12
12
//! * [Event Hub trigger](bindings/struct.EventHubTrigger.html)
59
59
//! Create a HTTP-triggered function:
60
60
//!
61
61
//! ```bash
62
- //! $ cargo func new http -n hello
62
+ //! $ cargo func new http hello
63
63
//! ```
64
64
//!
65
65
//! This generates `src/functions/hello.rs` with the following contents:
You can’t perform that action at this time.
0 commit comments