Skip to content

Commit f0a4a3b

Browse files
committed
Fix typo
Http/Https -> HTTP/HTTPS
1 parent cbe6d55 commit f0a4a3b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/azure-functions/durable/durable-functions-dotnet-entities.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ public static async Task<HttpResponseMessage> DeleteCounter(
226226

227227
### Example: client reads entity state
228228

229-
The following Azure Http Function implements a GET operation using REST conventions. It reads the current state of the counter entity whose key is passed in the URL path.
229+
The following Azure HTTP Function implements a GET operation using REST conventions. It reads the current state of the counter entity whose key is passed in the URL path.
230230
```csharp
231231
[FunctionName("GetCounter")]
232232
public static async Task<HttpResponseMessage> GetCounter(
@@ -266,7 +266,7 @@ public static async Task<int> Run(
266266
::: zone pivot="isolated"
267267
### Example: client signals entity
268268

269-
The following Azure Http Function implements a DELETE operation using REST conventions. It sends a delete signal to the counter entity whose key is passed in the URL path.
269+
The following Azure HTTP Function implements a DELETE operation using REST conventions. It sends a delete signal to the counter entity whose key is passed in the URL path.
270270

271271
```csharp
272272
[Function("DeleteCounter")]
@@ -282,7 +282,7 @@ public static async Task<HttpResponseData> DeleteCounter(
282282

283283
### Example: client reads entity state
284284

285-
The following Azure Http Function implements a GET operation using REST conventions. It reads the current state of the counter entity whose key is passed in the URL path.
285+
The following Azure HTTP Function implements a GET operation using REST conventions. It reads the current state of the counter entity whose key is passed in the URL path.
286286

287287
```csharp
288288
[Function("GetCounter")]

0 commit comments

Comments
 (0)