tutorials: time-management: fix typo
authorJinwoo Ahn <creator.ahn@gmail.com>
Sat, 11 Nov 2017 02:18:26 +0000 (11:18 +0900)
committerTim-Philipp Müller <tim@centricular.com>
Sat, 11 Nov 2017 11:02:23 +0000 (11:02 +0000)
https://bugzilla.gnome.org/show_bug.cgi?id=790196

markdown/tutorials/basic/time-management.md

index b6d7596..aca6316 100644 (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
 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:
 
 ### User interface refreshing
@@ -268,7 +268,7 @@ most queries would fail.
 
 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
-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
 and duration are common enough queries, `GstElement` offers easier,
 ready-made alternatives: