Skip to content

Commit e027b82

Browse files
authored
Update service-fabric-reliable-actors-timers-reminders.md
Added missing `await` that would very likely be included in a real-world usage of the snippet
1 parent 3a4e7c5 commit e027b82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/service-fabric/service-fabric-reliable-actors-timers-reminders.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ To unregister a reminder, an actor calls the `UnregisterReminderAsync`(C#) or `u
207207

208208
```csharp
209209
IActorReminder reminder = GetReminder("Pay cell phone bill");
210-
Task reminderUnregistration = UnregisterReminderAsync(reminder);
210+
Task reminderUnregistration = await UnregisterReminderAsync(reminder);
211211
```
212212
```Java
213213
ActorReminder reminder = getReminder("Pay cell phone bill");

0 commit comments

Comments
 (0)