You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by lo...@apache.org on 2022/05/12 00:30:41 UTC

[beam] branch lostluck-patch-2 created (now fee415d12f3)

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

lostluck pushed a change to branch lostluck-patch-2
in repository https://gitbox.apache.org/repos/asf/beam.git


      at fee415d12f3 Typo & link update

This branch includes the following new commits:

     new fee415d12f3 Typo & link update

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[beam] 01/01: Typo & link update

Posted by lo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

lostluck pushed a commit to branch lostluck-patch-2
in repository https://gitbox.apache.org/repos/asf/beam.git

commit fee415d12f3bffb6b53dfc7e77e7ab5b8a8d30bf
Author: Robert Burke <lo...@users.noreply.github.com>
AuthorDate: Wed May 11 17:30:35 2022 -0700

    Typo & link update
---
 sdks/typescript/README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sdks/typescript/README.md b/sdks/typescript/README.md
index d931e836941..7971bf1d563 100644
--- a/sdks/typescript/README.md
+++ b/sdks/typescript/README.md
@@ -62,7 +62,7 @@ encoding is used when we don't have sufficient type information.
 
 * We have added additional methods to the PCollection object, notably `map`
 and `flatmap`, [rather than only allowing apply](https://www.mail-archive.com/dev@beam.apache.org/msg06035.html).
-In addition, `apply` can accept a function argument `(PColletion) => ...` as
+In addition, `apply` can accept a function argument `(PCollection) => ...` as
 well as a PTransform subclass, which treats this callable as if it were a
 PTransform's expand.
 
@@ -102,7 +102,7 @@ We currently offer asynchronous variants of `PValue.apply(...)` (in addition
 to the synchronous ones, as they are easier to chain) as well as making
 `Runner.run` asynchronous. TBD to do this for all user callbacks as well.
 
-An example pipeline can be found at https://github.com/robertwb/beam-javascript/blob/javascript/sdks/node-ts/src/apache_beam/examples/wordcount.ts
+An example pipeline can be found at https://github.com/apache/beam/blob/master/sdks/typescript/src/apache_beam/examples/wordcount.ts
 
 ## TODO