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 5DC3A200C30 for ; Tue, 7 Mar 2017 18:06:32 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 5C6C7160B82; Tue, 7 Mar 2017 17:06:32 +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 AD851160B65 for ; Tue, 7 Mar 2017 18:06:31 +0100 (CET) Received: (qmail 28670 invoked by uid 500); 7 Mar 2017 17:06:30 -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 28661 invoked by uid 99); 7 Mar 2017 17:06:30 -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; Tue, 07 Mar 2017 17:06:30 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C246EDFD9E; Tue, 7 Mar 2017 17:06:30 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: davor@apache.org To: commits@beam.apache.org Date: Tue, 07 Mar 2017 17:06:30 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/3] beam-site git commit: Fixed typos (from distributed to distributed) archived-at: Tue, 07 Mar 2017 17:06:32 -0000 Repository: beam-site Updated Branches: refs/heads/asf-site dd1ca3fd3 -> 6dd302c0f Fixed typos (from distributed to distributed) Project: http://git-wip-us.apache.org/repos/asf/beam-site/repo Commit: http://git-wip-us.apache.org/repos/asf/beam-site/commit/f2a4d297 Tree: http://git-wip-us.apache.org/repos/asf/beam-site/tree/f2a4d297 Diff: http://git-wip-us.apache.org/repos/asf/beam-site/diff/f2a4d297 Branch: refs/heads/asf-site Commit: f2a4d297f81450cf095e3ebac2ebc49594c13344 Parents: dd1ca3f Author: 성준영 Authored: Tue Mar 7 23:57:31 2017 +0900 Committer: 성준영 Committed: Tue Mar 7 23:57:31 2017 +0900 ---------------------------------------------------------------------- src/documentation/programming-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/beam-site/blob/f2a4d297/src/documentation/programming-guide.md ---------------------------------------------------------------------- diff --git a/src/documentation/programming-guide.md b/src/documentation/programming-guide.md index f70d969..0aca04e 100644 --- a/src/documentation/programming-guide.md +++ b/src/documentation/programming-guide.md @@ -287,7 +287,7 @@ Beam provides the following transforms, each of which represents a different pro In such roles, `ParDo` is a common intermediate step in a pipeline. You might use it to extract certain fields from a set of raw input records, or convert raw input into a different format; you might also use `ParDo` to convert processed data into a format suitable for output, like database table rows or printable strings. -When you apply a `ParDo` transform, you'll need to provide user code in the form of a `DoFn` object. `DoFn` is a Beam SDK class that defines a distribured processing function. +When you apply a `ParDo` transform, you'll need to provide user code in the form of a `DoFn` object. `DoFn` is a Beam SDK class that defines a distributed processing function. > When you create a subclass of `DoFn`, note that your subclass should adhere to the [General Requirements for Writing User Code for Beam Transforms](#transforms-usercodereqs).