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: áá ¥á¼áá ®á«áá §á¼ <[email protected]> Authored: Tue Mar 7 23:57:31 2017 +0900 Committer: áá ¥á¼áá ®á«áá §á¼ <[email protected]> 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).
