Snapshot of commit d5ec1d5018ed24f1b4f32b1d09df6dbd7e2fc425

from branch master of git://git.jetbrains.org/idea/community.git
diff --git a/resources-en/src/inspectionDescriptions/NonFinalGuard.html b/resources-en/src/inspectionDescriptions/NonFinalGuard.html
new file mode 100644
index 0000000..db32641
--- /dev/null
+++ b/resources-en/src/inspectionDescriptions/NonFinalGuard.html
@@ -0,0 +1,8 @@
+<html>
+<body>
+               This inspection reports any @net.jcip.annotations.GuardedBy annotations where the guarding field
+                is not final. Gaurding on a non-final field may result in unexpected race conditions, as locks will
+                be held on the value of the field (which may change), rather than the field itself.
+           <br><small>New in 9</small>
+</body>
+</html>
\ No newline at end of file