Skip to content

Commit 6916aea

Browse files
authored
Fix typo "form" > "from"
In the code example given the flask server returns "Hello from Python!" but there are typos writing "form" instead of "from" in the post.
1 parent b2dbcdc commit 6916aea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/en/blog/_posts/2019-07-23-get-started-with-kubernetes-using-python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ Run the following command to have Docker run the application in a container and
120120
```
121121
docker run -p 5001:5000 hello-python
122122
```
123-
Now navigate to http://localhost:5001, and you should see the “Hello form Python!” message.
123+
Now navigate to http://localhost:5001, and you should see the “Hello from Python!” message.
124124

125125
### More info
126126
* [Get started with Docker](https://docs.docker.com/get-started/)
@@ -201,7 +201,7 @@ kubectl get pods
201201
```
202202
<img src="/images/blog/get-started-with-kubernetes-using-python/kubectl-get-pods.png" alt="Pod listing" />
203203

204-
Now navigate to http://localhost:6000, and you should see the “Hello form Python!” message.
204+
Now navigate to http://localhost:6000, and you should see the “Hello from Python!” message.
205205

206206
That’s it! The application is now running in Kubernetes!
207207

0 commit comments

Comments
 (0)