From 61c13f94926ee7d7996bde369cf2fd0413cd57d7 Mon Sep 17 00:00:00 2001 From: Michael Hanselmann <hansmi@google.com> Date: Fri, 22 Feb 2013 15:07:08 +0100 Subject: [PATCH] Use "none" instead of "everyone" in RAPI documentation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The list of required access permissions uses the word βeveryoneβ to mean βno special permissions are neededβ. The word βnoneβ fits better. Signed-off-by: Michael Hanselmann <hansmi@google.com> Reviewed-by: Guido Trotter <ultrotter@google.com> --- lib/build/sphinx_ext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/build/sphinx_ext.py b/lib/build/sphinx_ext.py index b68f5702a..1d6ca91d9 100644 --- a/lib/build/sphinx_ext.py +++ b/lib/build/sphinx_ext.py @@ -482,7 +482,7 @@ def _BuildRapiAccessTable(res): if access: perms = utils.CommaJoin(sorted(access)) else: - perms = "*everyone*" + perms = "*(none)*" yield (" | :ref:`%s <%s>`: %s" % (method, _MakeRapiResourceLink(method, uri), perms)) -- GitLab