This is an automated email from the ASF dual-hosted git repository.
damccorm 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 3591283d722 Fix a couple notebook typos (#28166)
3591283d722 is described below
commit 3591283d722c6047e8ac77a166e35581c4765fe5
Author: Danny McCormick <[email protected]>
AuthorDate: Fri Sep 1 09:44:20 2023 -0400
Fix a couple notebook typos (#28166)
---
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",