Not so much of a question here but I found a small error in the first example of under the "Language Reference" > "Strategy" > "Execution" tab in the help guide.
The example uses a return statement that reads:
entryOrder = execution.order;
I tried to use this example but after compiling, I received an error that said "...does not contain definition for 'order'..."
I just changed the lower case o to an upper case O in the word "order": "execution.Order" which allowed me to compile my script.

Comment