From 176444695becc031b81551668f177f994ec5a52b Mon Sep 17 00:00:00 2001 From: Andrei Shikov Date: Wed, 10 Oct 2018 18:09:16 +0100 Subject: [PATCH] Add news to base feature interface --- documentation/features/bootstrappers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/features/bootstrappers.md b/documentation/features/bootstrappers.md index 2b05d84e..20730bfc 100644 --- a/documentation/features/bootstrappers.md +++ b/documentation/features/bootstrappers.md @@ -43,7 +43,7 @@ class BootstrapperImpl : Bootstrapper { Pass your `Bootstrapper` implementation in the constructor to either `ReducerFeature`, `ActorReducerFeature`, or `BaseFeature`: ```kotlin -class MyComplexFeature : BaseFeature( +class MyComplexFeature : BaseFeature( // ...remainder omitted... bootstrapper = BootstrapperImpl() )