This is an automated email from the ASF dual-hosted git repository. jochen pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-lang.git
The following commit(s) were added to refs/heads/master by this push: new 797f9a4f5 Minor documentation fixes. 797f9a4f5 is described below commit 797f9a4f5d8746a8c2c5dc28c422176ead897516 Author: Jochen Wiedmann <jochen.wiedm...@gmail.com> AuthorDate: Fri May 17 01:02:06 2024 +0200 Minor documentation fixes. --- src/main/java/org/apache/commons/lang3/annotations/Safe.java | 2 +- src/main/java/org/apache/commons/lang3/annotations/package-info.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/annotations/Safe.java b/src/main/java/org/apache/commons/lang3/annotations/Safe.java index 4b5212c71..c3a710cf2 100644 --- a/src/main/java/org/apache/commons/lang3/annotations/Safe.java +++ b/src/main/java/org/apache/commons/lang3/annotations/Safe.java @@ -26,7 +26,7 @@ import java.lang.annotation.Target; * This annotation is used to indicate, that a variable, field, or parameter * contains a safe value. If so, the annotated element may be used in an * invocation of a constructor, or method, which is annotated with - * {@code @Trusted}. + * {@code @Insecure}. * * For example, suggest the following method declaration: * <pre> diff --git a/src/main/java/org/apache/commons/lang3/annotations/package-info.java b/src/main/java/org/apache/commons/lang3/annotations/package-info.java index 43d54d606..720d61069 100644 --- a/src/main/java/org/apache/commons/lang3/annotations/package-info.java +++ b/src/main/java/org/apache/commons/lang3/annotations/package-info.java @@ -30,7 +30,7 @@ * <dd>By annotating a variable with {@code @Safe}, the API user * declares, that the variable contains trusted input, that can be * used as a parameter in an invocation of a constructor, or method, - * that is annotated with {@code @Trusted}.</dd> + * that is annotated with {@code @Insecure}.</dd> * </dl> * @since 3.15 */