Skip to content

Commit 0398d08

Browse files
authored
Fix broken javascript code snippet
Fixed misspelled variable in code snippet.
1 parent 2089ed0 commit 0398d08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ const moment = require("moment");
252252

253253
module.exports = df.orchestrator(function*(context) {
254254
const jobId = context.df.getInput();
255-
const pollingInternal = getPollingInterval();
255+
const pollingInterval = getPollingInterval();
256256
const expiryTime = getExpiryTime();
257257

258258
while (moment.utc(context.df.currentUtcDateTime).isBefore(expiryTime)) {

0 commit comments

Comments
 (0)