This is an automated email from the ASF dual-hosted git repository. tzulitai pushed a commit to branch release-1.7 in repository https://gitbox.apache.org/repos/asf/flink.git
commit a74e856b178bc41b3e4c8a1e567509573af06b5a Author: KarmaGYZ <karma...@gmail.com> AuthorDate: Thu Nov 29 21:02:54 2018 +0800 [FLINK-11029] [docs] Fixed incorrect parameter in Working with state doc This closes #7198. --- docs/dev/stream/state/state.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dev/stream/state/state.md b/docs/dev/stream/state/state.md index decf1db..a3109f2 100644 --- a/docs/dev/stream/state/state.md +++ b/docs/dev/stream/state/state.md @@ -142,7 +142,7 @@ is available in a `RichFunction` has these methods for accessing state: * `ValueState<T> getState(ValueStateDescriptor<T>)` * `ReducingState<T> getReducingState(ReducingStateDescriptor<T>)` * `ListState<T> getListState(ListStateDescriptor<T>)` -* `AggregatingState<IN, OUT> getAggregatingState(AggregatingState<IN, OUT>)` +* `AggregatingState<IN, OUT> getAggregatingState(AggregatingStateDescriptor<IN, ACC, OUT>)` * `FoldingState<T, ACC> getFoldingState(FoldingStateDescriptor<T, ACC>)` * `MapState<UK, UV> getMapState(MapStateDescriptor<UK, UV>)`