Skip to content

Commit a5f79d8

Browse files
authored
Fix typos in QueryCounter code sample
1 parent f69da02 commit a5f79d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -451,10 +451,10 @@ public static async Task<HttpResponseData> Run(
451451

452452
if (entity is null)
453453
{
454-
return request.CreateResponse(HttpStatusCode.NotFound);
454+
return req.CreateResponse(HttpStatusCode.NotFound);
455455
}
456456

457-
HttpResponseData response = request.CreateResponse(HttpStatusCode.OK);
457+
HttpResponseData response = req.CreateResponse(HttpStatusCode.OK);
458458
await response.WriteAsJsonAsync(entity);
459459

460460
return response;

0 commit comments

Comments
 (0)