Fix typos in streaming.md

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-docs/-/merge_requests/123>
This commit is contained in:
Axel Kellermann 2020-12-02 17:10:40 +00:00 committed by Tim-Philipp Müller
parent 172ace3cc2
commit df3a6542a2

View file

@ -14,7 +14,7 @@ particular:
## Introduction ## Introduction
When streaming, media chunks are decoded and queued for presentation as 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 delayed (which is not an uncommon situation at all on the Internet) the
presentation queue might run dry and media playback could stall. 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; The only special thing this tutorial does is react to certain messages;
therefore, the initialization code is very simple and should be 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: streams:
``` c ``` c