summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAxel Kellermann <axel_kellermann@mentor.com>2020-12-02 17:10:40 +0000
committerTim-Philipp Müller <tim@centricular.com>2020-12-02 19:04:40 +0000
commitdf3a6542a2facc6813ebd130de7ea7230a24945e (patch)
tree6c8edb1a9db5183bdbc59804bfb9a09c553673a8
parent172ace3cc2db06c515f36d1981a78c9a95e9a08b (diff)
Fix typos in streaming.md
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-docs/-/merge_requests/123>
-rw-r--r--markdown/tutorials/basic/streaming.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/markdown/tutorials/basic/streaming.md b/markdown/tutorials/basic/streaming.md
index 7f16513..59fea71 100644
--- a/markdown/tutorials/basic/streaming.md
+++ b/markdown/tutorials/basic/streaming.md
@@ -14,7 +14,7 @@ particular:
## Introduction
When streaming, media chunks are decoded and queued for presentation as
-soon as they arrive form the network. This means that if a chunk is
+soon as they arrive from the network. This means that if a chunk is
delayed (which is not an uncommon situation at all on the Internet) the
presentation queue might run dry and media playback could stall.
@@ -170,7 +170,7 @@ int main(int argc, char *argv[]) {
The only special thing this tutorial does is react to certain messages;
therefore, the initialization code is very simple and should be
-self-explanative by now. The only new bit is the detection of live
+self-explanatory by now. The only new bit is the detection of live
streams:
``` c