diff --git a/subprojects/gst-docs/markdown/tutorials/basic/media-information-gathering.md b/subprojects/gst-docs/markdown/tutorials/basic/media-information-gathering.md index f3115d54b9..1c6d4ad447 100644 --- a/subprojects/gst-docs/markdown/tutorials/basic/media-information-gathering.md +++ b/subprojects/gst-docs/markdown/tutorials/basic/media-information-gathering.md @@ -256,7 +256,7 @@ int main (int argc, char **argv) { uri = argv[1]; } - /* Initialize cumstom data structure */ + /* Initialize custom data structure */ memset (&data, 0, sizeof (data)); /* Initialize GStreamer */ diff --git a/subprojects/gst-docs/markdown/tutorials/playback/short-cutting-the-pipeline.md b/subprojects/gst-docs/markdown/tutorials/playback/short-cutting-the-pipeline.md index 5b19f13a79..548fb55387 100644 --- a/subprojects/gst-docs/markdown/tutorials/playback/short-cutting-the-pipeline.md +++ b/subprojects/gst-docs/markdown/tutorials/playback/short-cutting-the-pipeline.md @@ -148,7 +148,7 @@ int main(int argc, char *argv[]) { CustomData data; GstBus *bus; - /* Initialize cumstom data structure */ + /* Initialize custom data structure */ memset (&data, 0, sizeof (data)); data.b = 1; /* For waveform generation */ data.d = 1;