tutorials: time-management: fix typo

https://bugzilla.gnome.org/show_bug.cgi?id=790196
This commit is contained in:
Jinwoo Ahn 2017-11-11 11:18:26 +09:00 committed by Tim-Philipp Müller
parent adc2740ad4
commit 7665679eb6

View file

@ -252,7 +252,7 @@ in nanoseconds. Numbers expressing different time units then, should be
multiplied by macros like `GST_SECOND` or `GST_MSECOND`. This also makes multiplied by macros like `GST_SECOND` or `GST_MSECOND`. This also makes
your code more readable. your code more readable.
If we got a message, we process it in the `handle_message`` `function If we got a message, we process it in the `handle_message` function
(next subsection), otherwise: (next subsection), otherwise:
### User interface refreshing ### User interface refreshing
@ -268,7 +268,7 @@ most queries would fail.
We get here approximately 10 times per second, a good enough refresh We get here approximately 10 times per second, a good enough refresh
rate for our UI. We are going to print on screen the current media rate for our UI. We are going to print on screen the current media
position, which we can learn be querying the pipeline. This involves a position, which we can learn by querying the pipeline. This involves a
few steps that will be shown in the next subsection, but, since position few steps that will be shown in the next subsection, but, since position
and duration are common enough queries, `GstElement` offers easier, and duration are common enough queries, `GstElement` offers easier,
ready-made alternatives: ready-made alternatives: