mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-13 00:03:09 -04:00
Fixes generate_series examples
This commit is contained in:
parent
61c3fe4a9d
commit
8e8f4a5ea7
@ -7,7 +7,7 @@
|
|||||||
{"arg":"stop", "description":"value that ends the sequence once reached"},
|
{"arg":"stop", "description":"value that ends the sequence once reached"},
|
||||||
{"arg":"step","optional":true,"default":"1","description":"value used as the increment between values"}
|
{"arg":"step","optional":true,"default":"1","description":"value used as the increment between values"}
|
||||||
],
|
],
|
||||||
"examples": [ { "expression":"generate_series('1,5)", "returns":"array: '1', '2', '3', '4', '5'"},
|
"examples": [ { "expression":"generate_series(1,5)", "returns":"array: 1, 2, 3, 4, 5"},
|
||||||
{ "expression":"generate_series('5,1,-1)", "returns":"array: '5', '4', '3', '2', '1'"}
|
{ "expression":"generate_series(5,1,-1)", "returns":"array: 5, 4, 3, 2, 1"}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user