File tree 2 files changed +3
-4
lines changed
src/jvmMain/java/org/jetbrains/annotations
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ private Debug() {
35
35
}
36
36
37
37
/**
38
- * Allows to change the presentation of an object in debuggers
38
+ * Allows changing the presentation of an object in debuggers
39
39
*/
40
40
@ Target (ElementType .TYPE )
41
41
@ Retention (RetentionPolicy .CLASS )
Original file line number Diff line number Diff line change 27
27
* {@code <T extends @UnknownNullability Object>}.
28
28
* <p>
29
29
* The type parameter references are not affected by {@code @NotNullByDefault}. For example:
30
- * <pre>{@code
31
- * @NotNullByDefault
30
+ * <pre>{@code @NotNullByDefault
32
31
* interface Pair<K extends @Nullable Object, V> {
33
32
* // Not assumed to be @NotNull; may return null depending on the K instantiation
34
33
* K getKey();
35
34
* // Returns @NotNull, as implicit upper bound of V is @NotNull Object,
36
35
* // so it cannot be instantiated with a nullable type
37
36
* V getValue();
38
- * }}</pre>
37
+ * } }</pre>
39
38
* <p>
40
39
* The annotation has no effect on local variables.
41
40
*
You can’t perform that action at this time.
0 commit comments