# HG changeset patch # User jbe # Date 1427635179 -7200 # Node ID b66d446226af8d7c19c164093983f7eccf3af28a # Parent 0c7cbe267a6a3fe5324781a5e2d3168a35f146ff Fixed autodoc comment for auth.openid.verify{...} diff -r 0c7cbe267a6a -r b66d446226af framework/env/auth/openid/verify.lua --- a/framework/env/auth/openid/verify.lua Thu Mar 26 21:28:02 2015 +0100 +++ b/framework/env/auth/openid/verify.lua Sun Mar 29 15:19:39 2015 +0200 @@ -1,11 +1,11 @@ --[[-- -claimed_identifier, -- identifier owned by the user -errmsg, -- error message in case of failure -errcode = -- error code in case of failure (TODO: not implemented yet) -auth.openid.verify( - force_https = force_https, -- only allow https - curl_options = curl_options -- options passed to "curl" binary, when performing discovery -) +claimed_identifier, -- identifier owned by the user +errmsg, -- error message in case of failure +errcode = -- error code in case of failure (TODO: not implemented yet) +auth.openid.verify{ + force_https = force_https, -- only allow https + curl_options = curl_options -- options passed to "curl" binary, when performing discovery +} --]]--