Fixing typo ("timej" to "time") (#28438)

This commit is contained in:
Oto Brglez 2020-01-02 13:24:03 +01:00 committed by Johan Andrén
parent 03ce8a9349
commit 17792c657f
2 changed files with 2 additions and 2 deletions

View file

@ -47,7 +47,7 @@ object Behaviors {
BehaviorImpl.DeferredBehavior(ctx => factory.apply(ctx.asJava))
/**
* Support for stashing messages to unstash at a later timej.
* Support for stashing messages to unstash at a later time.
*/
def withStash[T](capacity: Int, factory: java.util.function.Function[StashBuffer[T], Behavior[T]]): Behavior[T] =
setup(ctx => {

View file

@ -30,7 +30,7 @@ object Behaviors {
BehaviorImpl.DeferredBehavior(factory)
/**
* Support for stashing messages to unstash at a later timej.
* Support for stashing messages to unstash at a later time.
*/
def withStash[T](capacity: Int)(factory: StashBuffer[T] => Behavior[T]): Behavior[T] =
setup(ctx => {