diff options
author | Yuri Sizov <11782833+YuriSizov@users.noreply.github.com> | 2022-08-12 15:29:58 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-12 15:29:58 +0300 |
commit | 65a1d86c4f4b893c6e72c5434c22a5ab7dcbe68b (patch) | |
tree | c3616eb558ec9af0434281f8054dd2b54206201f /doc/classes/StyleBoxFlat.xml | |
parent | 67d40155206e7c15575ec9bd5b609075784ed746 (diff) | |
parent | 1f72f48361e8a67a9473c99a27565fa6133c4b50 (diff) |
Merge pull request #64196 from asmaloney/doc-params-3
[doc] Use "param" instead of "code" to refer to parameters #3
Diffstat (limited to 'doc/classes/StyleBoxFlat.xml')
-rw-r--r-- | doc/classes/StyleBoxFlat.xml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/classes/StyleBoxFlat.xml b/doc/classes/StyleBoxFlat.xml index 48f656af8e..c4024fa4b5 100644 --- a/doc/classes/StyleBoxFlat.xml +++ b/doc/classes/StyleBoxFlat.xml @@ -41,7 +41,7 @@ <return type="int" /> <param index="0" name="corner" type="int" enum="Corner" /> <description> - Returns the given [code]corner[/code]'s radius. See [enum Corner] for possible values. + Returns the given [param corner]'s radius. See [enum Corner] for possible values. </description> </method> <method name="get_expand_margin" qualifiers="const"> @@ -56,14 +56,14 @@ <param index="0" name="margin" type="int" enum="Side" /> <param index="1" name="width" type="int" /> <description> - Sets the specified [enum Side]'s border width to [code]width[/code] pixels. + Sets the specified [enum Side]'s border width to [param width] pixels. </description> </method> <method name="set_border_width_all"> <return type="void" /> <param index="0" name="width" type="int" /> <description> - Sets the border width to [code]width[/code] pixels for all sides. + Sets the border width to [param width] pixels for all sides. </description> </method> <method name="set_corner_radius"> @@ -71,14 +71,14 @@ <param index="0" name="corner" type="int" enum="Corner" /> <param index="1" name="radius" type="int" /> <description> - Sets the corner radius to [code]radius[/code] pixels for the given [code]corner[/code]. See [enum Corner] for possible values. + Sets the corner radius to [param radius] pixels for the given [param corner]. See [enum Corner] for possible values. </description> </method> <method name="set_corner_radius_all"> <return type="void" /> <param index="0" name="radius" type="int" /> <description> - Sets the corner radius to [code]radius[/code] pixels for all corners. + Sets the corner radius to [param radius] pixels for all corners. </description> </method> <method name="set_corner_radius_individual"> @@ -88,7 +88,7 @@ <param index="2" name="radius_bottom_right" type="int" /> <param index="3" name="radius_bottom_left" type="int" /> <description> - Sets the corner radius for each corner to [code]radius_top_left[/code], [code]radius_top_right[/code], [code]radius_bottom_right[/code], and [code]radius_bottom_left[/code] pixels. + Sets the corner radius for each corner to [param radius_top_left], [param radius_top_right], [param radius_bottom_right], and [param radius_bottom_left] pixels. </description> </method> <method name="set_expand_margin"> @@ -96,14 +96,14 @@ <param index="0" name="margin" type="int" enum="Side" /> <param index="1" name="size" type="float" /> <description> - Sets the expand margin to [code]size[/code] pixels for the specified [enum Side]. + Sets the expand margin to [param size] pixels for the specified [enum Side]. </description> </method> <method name="set_expand_margin_all"> <return type="void" /> <param index="0" name="size" type="float" /> <description> - Sets the expand margin to [code]size[/code] pixels for all margins. + Sets the expand margin to [param size] pixels for all margins. </description> </method> <method name="set_expand_margin_individual"> @@ -113,7 +113,7 @@ <param index="2" name="size_right" type="float" /> <param index="3" name="size_bottom" type="float" /> <description> - Sets the expand margin for each margin to [code]size_left[/code], [code]size_top[/code], [code]size_right[/code], and [code]size_bottom[/code] pixels. + Sets the expand margin for each margin to [param size_left], [param size_top], [param size_right], and [param size_bottom] pixels. </description> </method> </methods> |