Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 0EC7F200D41 for ; Wed, 22 Nov 2017 15:47:29 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 0D095160BFD; Wed, 22 Nov 2017 14:47:29 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 57FDC160BDA for ; Wed, 22 Nov 2017 15:47:28 +0100 (CET) Received: (qmail 90385 invoked by uid 500); 22 Nov 2017 14:47:27 -0000 Mailing-List: contact commits-help@flink.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flink.apache.org Delivered-To: mailing list commits@flink.apache.org Received: (qmail 90376 invoked by uid 99); 22 Nov 2017 14:47:27 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Nov 2017 14:47:27 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 6F15EDFE5F; Wed, 22 Nov 2017 14:47:27 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: chesnay@apache.org To: commits@flink.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: flink git commit: [hotfix][docs] Fix typo in Trigger doc Date: Wed, 22 Nov 2017 14:47:27 +0000 (UTC) archived-at: Wed, 22 Nov 2017 14:47:29 -0000 Repository: flink Updated Branches: refs/heads/master f3b91f2b4 -> 28ee3c090 [hotfix][docs] Fix typo in Trigger doc This closes #5051. Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/28ee3c09 Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/28ee3c09 Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/28ee3c09 Branch: refs/heads/master Commit: 28ee3c090a270fc76c1bf85c01e778e87d5e05d8 Parents: f3b91f2 Author: Cristian Authored: Wed Nov 22 04:17:39 2017 -0800 Committer: zentol Committed: Wed Nov 22 15:46:59 2017 +0100 ---------------------------------------------------------------------- .../org/apache/flink/streaming/api/windowing/triggers/Trigger.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/28ee3c09/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/windowing/triggers/Trigger.java ---------------------------------------------------------------------- diff --git a/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/windowing/triggers/Trigger.java b/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/windowing/triggers/Trigger.java index f29fc6f..f41cce8 100644 --- a/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/windowing/triggers/Trigger.java +++ b/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/windowing/triggers/Trigger.java @@ -36,7 +36,7 @@ import java.io.Serializable; * *

A pane is the bucket of elements that have the same key (assigned by the * {@link org.apache.flink.api.java.functions.KeySelector}) and same {@link Window}. An element can - * be in multiple panes of it was assigned to multiple windows by the + * be in multiple panes if it was assigned to multiple windows by the * {@link org.apache.flink.streaming.api.windowing.assigners.WindowAssigner}. These panes all * have their own instance of the {@code Trigger}. *