[w3c/IndexedDB] Editorial: Replace flag set/unset with true/false. (#279)

Rather than "setting" and "unsetting" flags, treat flag properties
as booleans (either true or false).

Replace:
 * "Set foo flag" with "Set foo flag to true"
 * "Unset foo flag" with "Set foo flag to false"
 * "If foo is set, ..." with "If foo is true, ..."
 * "If foo is unset, ..." with "If foo is false, ..."

Also clarify a few places that refer to "the foo flag"
to be more explicitly "bar's foo flag".

No normative behavior changes.

You can view, comment on, or merge this pull request online at:

  https://github.com/w3c/IndexedDB/pull/279

-- Commit Summary --

  * Editorial: Replace flag set/unset with true/false.

-- File Changes --

    M index.bs (381)

-- Patch Links --

https://github.com/w3c/IndexedDB/pull/279.patch
https://github.com/w3c/IndexedDB/pull/279.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/IndexedDB/pull/279

Received on Wednesday, 12 June 2019 23:51:58 UTC