You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by fh...@apache.org on 2020/02/19 11:12:58 UTC

[flink] branch master updated: [hotfix][docs] Minor improvements of glossary.

This is an automated email from the ASF dual-hosted git repository.

fhueske pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new c4db705  [hotfix][docs] Minor improvements of glossary.
c4db705 is described below

commit c4db7052c78d6b8204170e17a80a2416fa760523
Author: Alexander Fedulov <14...@users.noreply.github.com>
AuthorDate: Mon Sep 16 19:07:44 2019 +0200

    [hotfix][docs] Minor improvements of glossary.
    
    This closes #9694.
---
 docs/concepts/glossary.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/docs/concepts/glossary.md b/docs/concepts/glossary.md
index 22f2c99..e670fee 100644
--- a/docs/concepts/glossary.md
+++ b/docs/concepts/glossary.md
@@ -79,8 +79,8 @@ whole [Flink Master](#flink-master) was called JobManager.
 #### Logical Graph
 
 A logical graph is a directed graph describing the high-level logic of a stream processing program.
-The nodes are [Operators](#operator) and the edges indicate input/output-relationships or
-data streams or data sets.
+The nodes are [Operators](#operator) and the edges indicate input/output-relationships of the 
+operators and correspond to data streams or data sets.
 
 #### Managed State
 
@@ -161,6 +161,6 @@ subsequent Tasks.
 A Transformation is applied on one or more data streams or data sets and results in one or more
 output data streams or data sets. A transformation might change a data stream or data set on a
 per-record basis, but might also only change its partitioning or perform an aggregation. While
-[Operators](#operator) and [Functions](#function)) are the "physical" parts of Flink's API,
-Transformations are only an API concept. Specifically, most - but not all - transformations are
+[Operators](#operator) and [Functions](#function) are the "physical" parts of Flink's API,
+Transformations are only an API concept. Specifically, most transformations are
 implemented by certain [Operators](#operator).