From bb6bcbfabb0904ba7947f219a4feab7f6ef1293e Mon Sep 17 00:00:00 2001 From: "copybara-service[bot]" Date: Thu, 18 Apr 2024 17:22:48 +0000 Subject: [PATCH] Latest docs on successful build 6145 auto-pushed to gh-pages --- bugpattern/Var.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bugpattern/Var.md b/bugpattern/Var.md index 45d45608731..ce2916308f7 100644 --- a/bugpattern/Var.md +++ b/bugpattern/Var.md @@ -32,7 +32,7 @@ Since Java 8 can infer whether a local variable or parameter is effectively explicitly marking local variables and parameters as `final` is discouraged. The annotation can also be applied to fields to indicate that the field is -deliberately non-final, but the use of @Var on fields is not required. +deliberately non-final, but the use of `@Var` on fields is not required. ## Suppression Suppress false positives by adding the suppression annotation `@SuppressWarnings("Var")` to the enclosing element.