You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by da...@apache.org on 2023/08/25 20:41:42 UTC

[beam] 01/01: Fix a couple notebook typos

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

damccorm pushed a commit to branch users/damccorm/typos
in repository https://gitbox.apache.org/repos/asf/beam.git

commit 73617d06de6d4157feb1f2f6837f9d356658b5e0
Author: Danny McCormick <da...@google.com>
AuthorDate: Fri Aug 25 16:41:35 2023 -0400

    Fix a couple notebook typos
---
 examples/notebooks/beam-ml/nlp_tensorflow_streaming.ipynb | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/examples/notebooks/beam-ml/nlp_tensorflow_streaming.ipynb b/examples/notebooks/beam-ml/nlp_tensorflow_streaming.ipynb
index 62db73881a3..99461071ae7 100644
--- a/examples/notebooks/beam-ml/nlp_tensorflow_streaming.ipynb
+++ b/examples/notebooks/beam-ml/nlp_tensorflow_streaming.ipynb
@@ -683,7 +683,7 @@
         "## Understanding Pub/Sub\n",
         "\n",
         "Google Cloud [Pub/Sub](https://cloud.google.com/pubsub/docs/overview) is a messaging service provided by Google Cloud Platform (GCP). It is designed to enable scalable, reliable, and real-time messaging between independent applications. Pub/Sub follows the publish-subscribe model, where messages are published by senders (publishers) to a topic, and then delivered to multiple receivers (subscribers) who have expressed interest in that topic. <br> <br>\n",
-        "Pub/Sub acts as an unbounded source, as it's constantly recieving and sending messages in real time. In such cases, we need to build a [Streaming Pipeline](https://beam.apache.org/documentation/sdks/python-streaming/)."
+        "Pub/Sub acts as an unbounded source, as it's constantly receiving and sending messages in real time. In such cases, we need to build a [Streaming Pipeline](https://beam.apache.org/documentation/sdks/python-streaming/)."
       ]
     },
     {
@@ -693,7 +693,7 @@
       },
       "source": [
         "## Creating a publisher for a pubsub topic in Google Cloud Console\n",
-        "A publisher is a component that allows us to create and send messages to Google Cloud Pub/Sub. Learn more about publishing and recieved messages from Pub/Sub [here](https://cloud.google.com/pubsub/docs/publish-receive-messages-client-library)."
+        "A publisher is a component that allows us to create and send messages to Google Cloud Pub/Sub. Learn more about publishing and received messages from Pub/Sub [here](https://cloud.google.com/pubsub/docs/publish-receive-messages-client-library)."
       ]
     },
     {
@@ -810,7 +810,7 @@
         "## Defining utility functions\n",
         "\n",
         "Below we have defined some functions for our Beam pipeline to perform the following tasks:\n",
-        "* Print the messages recieved from Pub/Sub\n",
+        "* Print the messages received from Pub/Sub\n",
         "* Tokenize the strings\n",
         "* Save the predictions in a list\n",
         "\n",