Skip to content

Commit 47ee919

Browse files
committed
adapt documentation for contexts
1 parent 96b6bd7 commit 47ee919

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/output-flex.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ struct options_t;
4343
enum class calling_context : std::uint8_t
4444
{
4545
main = 0, ///< In main context, i.e. the Lua script outside any callbacks
46-
process_node = 1, ///< In the process_node() callback
47-
process_way = 2, ///< In the process_way() callback
48-
process_relation = 3, ///< In the process_relation() callback
46+
process_node = 1, ///< Inside a callback where a node is handled
47+
process_way = 2, ///< Inside a callback where a way is handled
48+
process_relation = 3, ///< Inside a callback where a relation is handled
4949
select_relation_members = 4 ///< In the select_relation_members() callback
5050
};
5151

0 commit comments

Comments
 (0)