diff options
author | Yuri Sizov <yuris@humnom.net> | 2023-10-02 20:11:43 +0200 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-10-03 15:48:31 +0200 |
commit | cc0eebd9d8a42f3e57d4633c4388faa6d369d2c8 (patch) | |
tree | e539714cf844f473b5417ee388f9eeab113a863c /doc/classes/MarginContainer.xml | |
parent | a2f90d565ad29edcb3bdab77bc7df51cdde8514a (diff) | |
download | redot-engine-cc0eebd9d8a42f3e57d4633c4388faa6d369d2c8.tar.gz |
Validate `code` tags for class and member references
This commit also adds means to manually disable warnings
in `code` tags where it's a false positive with the new
`skip-lint` attribute.
Warnings are now enabled on CI to prevent future errors.
Diffstat (limited to 'doc/classes/MarginContainer.xml')
-rw-r--r-- | doc/classes/MarginContainer.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/classes/MarginContainer.xml b/doc/classes/MarginContainer.xml index 1a6621d354..b83ee7ba00 100644 --- a/doc/classes/MarginContainer.xml +++ b/doc/classes/MarginContainer.xml @@ -30,16 +30,16 @@ </tutorials> <theme_items> <theme_item name="margin_bottom" data_type="constant" type="int" default="0"> - All direct children of [MarginContainer] will have a bottom margin of [code]margin_bottom[/code] pixels. + Offsets towards the inside direct children of the container by this amount of pixels from the bottom. </theme_item> <theme_item name="margin_left" data_type="constant" type="int" default="0"> - All direct children of [MarginContainer] will have a left margin of [code]margin_left[/code] pixels. + Offsets towards the inside direct children of the container by this amount of pixels from the left. </theme_item> <theme_item name="margin_right" data_type="constant" type="int" default="0"> - All direct children of [MarginContainer] will have a right margin of [code]margin_right[/code] pixels. + Offsets towards the inside direct children of the container by this amount of pixels from the right. </theme_item> <theme_item name="margin_top" data_type="constant" type="int" default="0"> - All direct children of [MarginContainer] will have a top margin of [code]margin_top[/code] pixels. + Offsets towards the inside direct children of the container by this amount of pixels from the top. </theme_item> </theme_items> </class> |