From 07c1a7c80b9e3cc0b8c38a3a46b464fda373f5b7 Mon Sep 17 00:00:00 2001 From: Liam Miller-Cushon Date: Thu, 18 Apr 2024 10:11:35 -0700 Subject: [PATCH] Stop mentioning `@Var` in[] PiperOrigin-RevId: 626072465 --- docs/bugpattern/Var.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/bugpattern/Var.md b/docs/bugpattern/Var.md index d5f86bfbb26..5c923fa0ea1 100644 --- a/docs/bugpattern/Var.md +++ b/docs/bugpattern/Var.md @@ -18,4 +18,4 @@ 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.