Skip to content

Commit f93af56

Browse files
authoredNov 29, 2018
Merge pull request #8570 from AlisterH/ticket20665
Expression calculator: clarify documentation for x_at() and y_at() (addresses #20665)
2 parents 318c246 + 5256611 commit f93af56

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎resources/function_help/json/$x_at

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "$x_at",
33
"type": "function",
44
"description": "Retrieves a x coordinate of the current feature's geometry.",
5-
"arguments": [ {"arg":"i","description":"index of point of a line (indices start at 0; negative values apply from the last index)"}],
5+
"arguments": [ {"arg":"i","description":"index of point of a line (indices start at 0; negative values apply from the last index, starting at -1)"}],
66
"examples": [ { "expression":"$x_at(1)", "returns":"5"}
77
]
88
}

‎resources/function_help/json/$y_at

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "$y_at",
33
"type": "function",
44
"description": "Retrieves a y coordinate of the current feature's geometry.",
5-
"arguments": [ {"arg":"i","description":"index of point of a line (indices start at 0; negative values apply from the last index)"}],
5+
"arguments": [ {"arg":"i","description":"index of point of a line (indices start at 0; negative values apply from the last index, starting at -1)"}],
66
"examples": [ { "expression":"$y_at(1)", "returns":"2"}
77
]
88
}

0 commit comments

Comments
 (0)
Please sign in to comment.