Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unnecessary words in Javadoc #501

Merged
merged 1 commit into from
Jun 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@
* {@code @ClearEnvironmentVariable} is a JUnit Jupiter extension to clear the value
* of a environment variable for a test execution.
*
* <p>The key of the environment variable to be cleared must be specified via
* {@link #key()}. After the annotated element has been executed, After the
* annotated method has been executed, the initial default value is restored.</p>
* <p>The key of the environment variable to be cleared must be specified via {@link #key()}.
* After the annotated element has been executed, the initial default value is restored.</p>
*
* <p>{@code ClearEnvironmentVariable} is repeatable and can be used on the method and
* on the class level. If a class is annotated, the configured variable will be
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@
* {@code @ClearSystemProperty} is a JUnit Jupiter extension to clear the value
* of a system property for a test execution.
*
* <p>The key of the system property to be cleared must be specified via
* {@link #key()}. After the annotated element has been executed, After the
* annotated method has been executed, the initial default value is restored.</p>
* <p>The key of the system property to be cleared must be specified via {@link #key()}.
* After the annotated element has been executed, the initial default value is restored.</p>
*
* <p>{@code ClearSystemProperty} is repeatable and can be used on the method and
* on the class level. If a class is annotated, the configured property will be
Expand Down