You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: clarify vf() percent-encoding vs escaping (Copilot review)
Copilot flagged the vf() docstring as internally inconsistent: it said
'vf() does not transform your input' and later 'vf() URL-encodes them
for transport' -- both true, but confusing side-by-side.
Rewrite to distinguish (a) no Tableau-specific escaping/semantic transforms
(b) percent-encoding for HTTP transport. Also fold in a note that
percent-encoding is transport-layer only: %2C reaches the server as ','
and gets processed as a comma delimiter, so URL-encoding does NOT escape
a literal comma or backslash.
Also softened the 'empty value' bullet from 'undocumented but stable
behavior' (reads as a compat promise the library can't make) to
'observed... may change without notice.'
No behavior change.
0 commit comments