diff --git a/src/Orleans.Reminders/SystemTargetInterfaces/IReminderTable.cs b/src/Orleans.Reminders/SystemTargetInterfaces/IReminderTable.cs index 5179ae3ba1..d9a1ec28f7 100644 --- a/src/Orleans.Reminders/SystemTargetInterfaces/IReminderTable.cs +++ b/src/Orleans.Reminders/SystemTargetInterfaces/IReminderTable.cs @@ -38,7 +38,8 @@ Task StartAsync(CancellationToken cancellationToken = default) Task ReadRows(GrainId grainId); /// - /// Return all rows that have their in the range (start, end] + /// Returns all rows that have their in the range (begin, end]. + /// If begin is greater or equal to end, returns all entries with hash greater begin or hash less or equal to end. /// /// The exclusive lower bound. /// The inclusive upper bound. @@ -46,7 +47,7 @@ Task StartAsync(CancellationToken cancellationToken = default) Task ReadRows(uint begin, uint end); /// - /// Reads a specifie entry. + /// Reads the specified entry. /// /// The grain ID. /// Name of the reminder.