Closed BlazingTwist closed 1 year ago
I felt that the operand order for errors was misleading. (It says that it expects the Dict as the last operand, but outputs it as the first)
aya> "value" "key" "dict" :D
Type error at (:D):
Expected ((ASD|AJD))
Received ("dict" "key" "value" )
in :D .. }
The second commit changes the order, so that it matches the DocTypeStr
aya> "value" "key" "dict" :D
Type error at (:D):
Expected ((ASD|AJD))
Received ("value" "key" "dict" )
in :D .. }
Looks great! Thanks!
Dev test:
Resolves #82