diff --git a/ledger/ledger-api-common/src/main/scala/com/digitalasset/platform/akkastreams/dispatcher/Dispatcher.scala b/ledger/ledger-api-common/src/main/scala/com/digitalasset/platform/akkastreams/dispatcher/Dispatcher.scala index 2c71b1bc3945..63256b7bdcd5 100644 --- a/ledger/ledger-api-common/src/main/scala/com/digitalasset/platform/akkastreams/dispatcher/Dispatcher.scala +++ b/ledger/ledger-api-common/src/main/scala/com/digitalasset/platform/akkastreams/dispatcher/Dispatcher.scala @@ -23,7 +23,7 @@ trait Dispatcher[Index] extends AutoCloseable { /** Signals and stores a new head in memory. */ def signalNewHead(head: Index): Unit - /** Returns a stream of elements with the next index from start (inclusive) to end (exclusive) */ + /** Returns a stream of elements with the next index from start (exclusive) to end (inclusive) */ def startingAt[T]( startExclusive: Index, subSource: SubSource[Index, T],