diff --git a/idea/resources/META-INF/plugin-common.xml b/idea/resources/META-INF/plugin-common.xml
index c8ffd481409..0e013d6ab8e 100644
--- a/idea/resources/META-INF/plugin-common.xml
+++ b/idea/resources/META-INF/plugin-common.xml
@@ -3306,6 +3306,15 @@
language="kotlin"
/>
+
+
+
+This inspection reports usages of boxed Range.start and Range.endInclusive properties.
+These properties can be replaced with unboxed first and last properties.
+Example: range.start can be replaced with range.first.
+
+