diff options
author | Daniel Kolesa <d.kolesa@osg.samsung.com> | 2017-11-02 14:36:00 +0100 |
---|---|---|
committer | Daniel Kolesa <d.kolesa@osg.samsung.com> | 2017-11-02 14:36:00 +0100 |
commit | a5d77546a856c913742484b7674fa0b309516bd0 (patch) | |
tree | dd6930d4b3b6eafc2a97ae5c6a591e253b9984c4 /src | |
parent | e46d6d41d275f26e06383e831a40beb8aaa7ae6a (diff) |
docgen: better space out includes
Diffstat (limited to 'src')
-rw-r--r-- | src/scripts/elua/apps/gendoc.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/scripts/elua/apps/gendoc.lua b/src/scripts/elua/apps/gendoc.lua index 97c9715a40..7b2a776639 100644 --- a/src/scripts/elua/apps/gendoc.lua +++ b/src/scripts/elua/apps/gendoc.lua | |||
@@ -1390,6 +1390,7 @@ build_property = function(impl, cl) | |||
1390 | if (isget and gdoc:exists()) or (isset and sdoc:exists()) then | 1390 | if (isget and gdoc:exists()) or (isset and sdoc:exists()) then |
1391 | f:write_nl(2) | 1391 | f:write_nl(2) |
1392 | end | 1392 | end |
1393 | f:write_nl() | ||
1393 | f:write_editable(pns, "description") | 1394 | f:write_editable(pns, "description") |
1394 | f:write_nl() | 1395 | f:write_nl() |
1395 | end | 1396 | end |
@@ -1405,6 +1406,7 @@ build_property = function(impl, cl) | |||
1405 | f:write_nl(2) | 1406 | f:write_nl(2) |
1406 | end | 1407 | end |
1407 | if isset then | 1408 | if isset then |
1409 | f:write_nl() | ||
1408 | f:write_editable(pns, "getter_description") | 1410 | f:write_editable(pns, "getter_description") |
1409 | f:write_nl() | 1411 | f:write_nl() |
1410 | end | 1412 | end |
@@ -1418,6 +1420,7 @@ build_property = function(impl, cl) | |||
1418 | end | 1420 | end |
1419 | f:write_raw(sdoc:full_get(nil, true)) | 1421 | f:write_raw(sdoc:full_get(nil, true)) |
1420 | if isget then | 1422 | if isget then |
1423 | f:write_nl() | ||
1421 | f:write_editable(pns, "getter_description") | 1424 | f:write_editable(pns, "getter_description") |
1422 | f:write_nl() | 1425 | f:write_nl() |
1423 | end | 1426 | end |
@@ -1425,6 +1428,7 @@ build_property = function(impl, cl) | |||
1425 | 1428 | ||
1426 | f:write_nl() | 1429 | f:write_nl() |
1427 | if not isget or not isset then | 1430 | if not isget or not isset then |
1431 | f:write_nl() | ||
1428 | f:write_editable(pns, "description") | 1432 | f:write_editable(pns, "description") |
1429 | f:write_nl() | 1433 | f:write_nl() |
1430 | end | 1434 | end |