diff options
author | Andrzej Bieniek <andyhelp@gmail.com> | 2013-05-31 23:37:07 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2013-06-01 20:10:36 +0100 |
commit | 55c4db6295dda2789cde6ecd2ee966bd11a9c541 (patch) | |
tree | 80a9795ac556186b11a0d7e0589e332a3cbe27ac /docs | |
parent | 527423fcd9a5b74b8bc3dfbae75871b9c0f87f7c (diff) |
docs: remove double "the"
Diffstat (limited to 'docs')
-rw-r--r-- | docs/pwg/advanced-allocation.xml | 2 | ||||
-rw-r--r-- | docs/pwg/building-boiler.xml | 2 | ||||
-rw-r--r-- | docs/random/porting-to-1.0.txt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/pwg/advanced-allocation.xml b/docs/pwg/advanced-allocation.xml index aedf10a73..588803716 100644 --- a/docs/pwg/advanced-allocation.xml +++ b/docs/pwg/advanced-allocation.xml @@ -194,7 +194,7 @@ /* make memory holding 100 bytes */ mem = gst_allocator_alloc (NULL, 100, NULL); - /* add the the buffer */ + /* add the buffer */ gst_buffer_append_memory (buffer, mem); [...] diff --git a/docs/pwg/building-boiler.xml b/docs/pwg/building-boiler.xml index 77d78ce73..fd171adfd 100644 --- a/docs/pwg/building-boiler.xml +++ b/docs/pwg/building-boiler.xml @@ -328,7 +328,7 @@ GST_STATIC_PAD_TEMPLATE ( Those pad templates are registered during the <function>_class_init ()</function> function with the <function>gst_element_class_add_pad_template ()</function>. For this - function you need a handle the the <classname>GstPadTemplate</classname> + function you need a handle the <classname>GstPadTemplate</classname> which you can create from the static pad template with <function>gst_static_pad_template_get ()</function>. See below for more details on this. diff --git a/docs/random/porting-to-1.0.txt b/docs/random/porting-to-1.0.txt index 5e75c1989..341d9f9da 100644 --- a/docs/random/porting-to-1.0.txt +++ b/docs/random/porting-to-1.0.txt @@ -199,7 +199,7 @@ CHANGES as buffers, events, messages, caps, etc. Signals, for example, would use the boxed type if the argument include GstMiniObject derived types. - gst_mini_object_new() is removed. You would allocate memory with the the + gst_mini_object_new() is removed. You would allocate memory with the methods specific for the derived type. GstParamSpecMiniObject is removed, use boxed param spec now with the GType |