From 423acef4d9930a68129ab5b18bdee3a9bc103309 Mon Sep 17 00:00:00 2001 From: Krystian Wojtas Date: Tue, 23 Nov 2021 19:56:27 +0100 Subject: [PATCH] tutorials: Fix typos Part-of: --- .../gst-docs/markdown/tutorials/basic/toolkit-integration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subprojects/gst-docs/markdown/tutorials/basic/toolkit-integration.md b/subprojects/gst-docs/markdown/tutorials/basic/toolkit-integration.md index f97c796fa0..2b610b10f7 100644 --- a/subprojects/gst-docs/markdown/tutorials/basic/toolkit-integration.md +++ b/subprojects/gst-docs/markdown/tutorials/basic/toolkit-integration.md @@ -245,7 +245,7 @@ static gboolean refresh_ui (CustomData *data) { /* Block the "value-changed" signal, so the slider_cb function is not called * (which would trigger a seek the user has not requested) */ g_signal_handler_block (data->slider, data->slider_update_signal_id); - /* Set the position of the slider to the current pipeline positoin, in SECONDS */ + /* Set the position of the slider to the current pipeline position, in SECONDS */ gtk_range_set_value (GTK_RANGE (data->slider), (gdouble)current / GST_SECOND); /* Re-enable the signal */ g_signal_handler_unblock (data->slider, data->slider_update_signal_id); @@ -764,7 +764,7 @@ if (gst_element_query_position (data->playbin, GST_FORMAT_TIME, ¤t)) { /* Block the "value-changed" signal, so the slider_cb function is not called * (which would trigger a seek the user has not requested) */ g_signal_handler_block (data->slider, data->slider_update_signal_id); - /* Set the position of the slider to the current pipeline positoin, in SECONDS */ + /* Set the position of the slider to the current pipeline position, in SECONDS */ gtk_range_set_value (GTK_RANGE (data->slider), (gdouble)current / GST_SECOND); /* Re-enable the signal */ g_signal_handler_unblock (data->slider, data->slider_update_signal_id);