From 54a9ecbd27192b18852dacf331a6d5421cce2d87 Mon Sep 17 00:00:00 2001 From: Anurag Priyam Date: Wed, 11 Jan 2012 15:44:26 +0530 Subject: [PATCH] gears.color docs: replace literal '<' and '>' with respective HTML entities Luadoc confuses '' with an HTML tag otherwise. Signed-off-by: Anurag Priyam Signed-off-by: Uli Schlachter --- lib/gears/color.lua.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/gears/color.lua.in b/lib/gears/color.lua.in index 266b1623e..9b0a99261 100644 --- a/lib/gears/color.lua.in +++ b/lib/gears/color.lua.in @@ -81,9 +81,9 @@ end --- Create a linear pattern object. -- The pattern is created from a string. This string should have the following --- form: "x0,y0:x1,y1:" +-- form: "x0,y0:x1,y1:<stops>" -- x0,y0 and x1,y1 are the start and stop point of the pattern. --- For the explanation of "", see add_stops(). +-- For the explanation of "<stops>", see add_stops(). -- @param arg The argument describing the pattern -- @return a cairo pattern object -- @name create_linear_pattern @@ -91,10 +91,10 @@ end --- Create a radial pattern object. -- The pattern is created from a string. This string should have the following --- form: "x0,y0,r0:x1,y1,r1:" +-- form: "x0,y0,r0:x1,y1,r1:<stops>" -- x0,y0 and x1,y1 are the start and stop point of the pattern. -- r0 and r1 are the radii of the start / stop circle. --- For the explanation of "", see add_stops(). +-- For the explanation of "<stops>", see add_stops(). -- @param arg The argument describing the pattern -- @return a cairo pattern object -- @name create_radial_pattern