From f2cf254af081fe7ba764502b392021f47782c3c8 Mon Sep 17 00:00:00 2001 From: Pawel Batko Date: Wed, 20 Oct 2021 11:44:44 +0200 Subject: [PATCH] [Short] Fix docs for Dispatcher#startingAt CHANGELOG_BEGIN CHANGELOG_END --- .../platform/akkastreams/dispatcher/Dispatcher.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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],