summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamiro Polla <ramiro.polla@collabora.co.uk>2015-03-13 18:22:01 +0000
committerSebastian Dröge <sebastian@centricular.com>2015-03-14 14:19:47 +0000
commit5253a4d879859997d1e1c2b1b101ab81541d29cb (patch)
tree9407d68fe89db9a8f771527994ea1c0ee6b775d4
parent21da31174351710eb1106d0871fff6d9cd0711b5 (diff)
element: properly escape percent sign in documentation
-rw-r--r--gst/gstelement.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/gstelement.c b/gst/gstelement.c
index ae3999058..0a5cdb0f2 100644
--- a/gst/gstelement.c
+++ b/gst/gstelement.c
@@ -976,7 +976,7 @@ _gst_element_request_pad (GstElement * element, GstPadTemplate * templ,
*
* This method is slower than manually getting the pad template and calling
* gst_element_request_pad() if the pads should have a specific name (e.g.
- * @name is "src_1" instead of "src_%u").
+ * @name is "src_1" instead of "src_\%u").
*
* Returns: (transfer full) (nullable): requested #GstPad if found,
* otherwise %NULL. Release after usage.