Skip to content

Commit 252431d

Browse files
authored
Fix typo on powershell snippet
tldr
1 parent fb42bfa commit 252431d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ async def main(msg: func.QueueMessage, starter: str) -> None:
432432

433433
**run.ps1**
434434
```powershell
435-
param($[string] $input, $TriggerMetadata)
435+
param([string] $input, $TriggerMetadata)
436436
437437
$InstanceId = Start-DurableOrchestration -FunctionName $FunctionName -Input $input
438438
```

0 commit comments

Comments
 (0)