summaryrefslogtreecommitdiffstats
path: root/docs/clang-tidy/checks/google-objc-global-variable-declaration.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/clang-tidy/checks/google-objc-global-variable-declaration.rst')
-rw-r--r--docs/clang-tidy/checks/google-objc-global-variable-declaration.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/clang-tidy/checks/google-objc-global-variable-declaration.rst b/docs/clang-tidy/checks/google-objc-global-variable-declaration.rst
index d4703706..e4b41fbc 100644
--- a/docs/clang-tidy/checks/google-objc-global-variable-declaration.rst
+++ b/docs/clang-tidy/checks/google-objc-global-variable-declaration.rst
@@ -7,7 +7,7 @@ Finds global variable declarations in Objective-C files that do not follow the
pattern of variable names in Google's Objective-C Style Guide.
The corresponding style guide rule:
-http://google.github.io/styleguide/objcguide.html#variable-names
+https://google.github.io/styleguide/objcguide.html#variable-names
All the global variables should follow the pattern of `g[A-Z].*` (variables) or
`k[A-Z].*` (constants). The check will suggest a variable name that follows the