Commit 898a903d authored by Madhura Bhave's avatar Madhura Bhave

Fix typos in javadoc

parent 4b2fdee3
......@@ -18,7 +18,7 @@ package org.springframework.boot.test.system;
/**
* Provides access to {@link System#out System.out} and {@link System#err System.err}
* output that has been capture by the {@link OutputCaptureExtension}. Can be used to
* output that has been captured by the {@link OutputCaptureExtension}. Can be used to
* apply assertions either using AssertJ or standard JUnit assertions. For example:
* <pre class="code">
* assertThat(output).contains("started"); // Checks all output
......
......@@ -276,7 +276,7 @@ class OutputCapture implements CapturedOutput {
}
/**
* Save disable and restore AnsiOutput without it needing to be on the classpath.
* Save, disable and restore AnsiOutput without it needing to be on the classpath.
*/
private static class AnsiOutputState {
......
......@@ -37,7 +37,7 @@ import org.junit.jupiter.api.extension.ParameterResolver;
* argument to your test class constructor or test method:
*
* <pre class="code">
* &#064;ExtendWith(OutputExtension.class)
* &#064;ExtendWith(OutputCaptureExtension.class)
* class MyTest {
*
* &#064;Test
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment