diff --git a/common/src/main/java/org/jetbrains/annotations/Contract.java b/common/src/main/java/org/jetbrains/annotations/Contract.java index b3e1511..5f039d8 100644 --- a/common/src/main/java/org/jetbrains/annotations/Contract.java +++ b/common/src/main/java/org/jetbrains/annotations/Contract.java @@ -51,7 +51,7 @@ * {@code @Contract("_, null -> null")} - the method returns null if its second argument is null
* {@code @Contract("_, null -> null; _, !null -> !null")} - the method returns null if its second argument is null and not-null otherwise
* {@code @Contract("true -> fail")} - a typical {@code assertFalse} method which throws an exception if {@code true} is passed to it
- * {@code @Contract("_ -> this")} - the method always returns its qualifier (e.g. {@link StringBuilder#append(String)}). + * {@code @Contract("_ -> this")} - the method always returns its qualifier (e.g. {@link StringBuilder#append(String)}).
* {@code @Contract("null -> fail; _ -> param1")} - the method throws an exception if the first argument is null, * otherwise it returns the first argument (e.g. {@code Objects.requireNonNull}).
* {@code @Contract("!null, _ -> param1; null, !null -> param2; null, null -> fail")} - the method returns the first non-null argument,