From commits-return-114562-archive-asf-public=cust-asf.ponee.io@beam.apache.org Tue Aug 10 15:19:09 2021 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mxout1-he-de.apache.org (mxout1-he-de.apache.org [95.216.194.37]) by mx-eu-01.ponee.io (Postfix) with ESMTPS id 8651E180634 for ; Tue, 10 Aug 2021 17:19:09 +0200 (CEST) Received: from mail.apache.org (mailroute1-lw-us.apache.org [207.244.88.153]) by mxout1-he-de.apache.org (ASF Mail Server at mxout1-he-de.apache.org) with SMTP id 068BF60680 for ; Tue, 10 Aug 2021 15:19:08 +0000 (UTC) Received: (qmail 68818 invoked by uid 500); 10 Aug 2021 15:19:08 -0000 Mailing-List: contact commits-help@beam.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@beam.apache.org Delivered-To: mailing list commits@beam.apache.org Received: (qmail 68804 invoked by uid 99); 10 Aug 2021 15:19:08 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2021 15:19:08 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 02D4881F26; Tue, 10 Aug 2021 15:19:07 +0000 (UTC) Date: Tue, 10 Aug 2021 15:19:03 +0000 To: "commits@beam.apache.org" Subject: [beam] branch master updated: Fix typo MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <162860873717.12921.5127090986549163684@gitbox.apache.org> From: lcwik@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: beam X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 2fd98755f21befaade118de9b7bd632737094f28 X-Git-Newrev: d980232deb7a79640856436148ab3f9f7ab35e0c X-Git-Rev: d980232deb7a79640856436148ab3f9f7ab35e0c X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. lcwik pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/beam.git The following commit(s) were added to refs/heads/master by this push: new d980232 Fix typo new 09548a9 Merge pull request #15302 from chamikaramj/fix_doc_typo d980232 is described below commit d980232deb7a79640856436148ab3f9f7ab35e0c Author: Chamikara Jayalath AuthorDate: Tue Aug 10 07:51:15 2021 -0700 Fix typo --- website/www/site/content/en/documentation/glossary.md | 4 ++-- website/www/site/content/en/documentation/programming-guide.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/website/www/site/content/en/documentation/glossary.md b/website/www/site/content/en/documentation/glossary.md index 3993f53..4bc7395 100644 --- a/website/www/site/content/en/documentation/glossary.md +++ b/website/www/site/content/en/documentation/glossary.md @@ -114,7 +114,7 @@ Transforms that can be shared across Beam SDKs. With cross-language transforms, To learn more, see: -* [Multi-language pipelines](/documentation/programming-guide/#mulit-language-pipelines) +* [Multi-language pipelines](/documentation/programming-guide/#multi-language-pipelines) ## Deferred execution @@ -241,7 +241,7 @@ A pipeline that uses cross-language transforms. You can combine transforms writt To learn more, see: -* [Multi-language pipelines](/documentation/programming-guide/#mulit-language-pipelines) +* [Multi-language pipelines](/documentation/programming-guide/#multi-language-pipelines) ## ParDo diff --git a/website/www/site/content/en/documentation/programming-guide.md b/website/www/site/content/en/documentation/programming-guide.md index c4a3c95..0e44a6cd 100644 --- a/website/www/site/content/en/documentation/programming-guide.md +++ b/website/www/site/content/en/documentation/programming-guide.md @@ -6133,7 +6133,7 @@ use case. {{< code_sample "sdks/python/apache_beam/examples/snippets/snippets.py" BundleFinalize >}} {{< /highlight >}} -## 13. Multi-language pipelines {#mulit-language-pipelines} +## 13. Multi-language pipelines {#multi-language-pipelines} Beam allows you to combine transforms written in any supported SDK language (currently, Java and Python) and use them in one multi-language pipeline. This capability makes it easy to provide new functionality simultaneously in different Apache Beam SDKs through a single cross-language transform. For example, the [Apache Kafka connector](https://github.com/apache/beam/blob/master/sdks/python/apache_beam/io/kafka.py) and [SQL transform](https://github.com/apache/beam/blob/master/sdks/pytho [...]