Skip to content

Commit 9edaf91

Browse files
committed
fix javadoc
1 parent 51137d9 commit 9edaf91

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/io/github/dennisochulor/playwright_java_multithread/PlaywrightThread.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* choose to create a {@link PlaywrightThreadFactory#ofCustom(Class) custom implementation} of this class by extending it.
4242
*
4343
* @see <a href="https://playwright.dev/java/docs/multithreading">Multithreading with Playwright</a>
44-
* @see {@link PlaywrightThreadFactory}
44+
* @see PlaywrightThreadFactory
4545
*
4646
*/
4747
public abstract class PlaywrightThread extends Thread {

src/main/java/io/github/dennisochulor/playwright_java_multithread/PlaywrightThreadFactory.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ public static ThreadFactory ofWebkit(CreateOptions createOptions, LaunchOptions
156156
* Returns a {@link ThreadFactory} that produces custom user-defined {@link PlaywrightThread}s.
157157
* Custom {@link PlaywrightThread}s can be created by extending the {@link PlaywrightThread} class. For example:
158158
*
159-
* <pre><blockQuotes>
159+
* <pre>
160160
* public class CustomPlaywrightThread extends PlaywrightThread {
161161
*
162162
* public CustomPlaywrightThread(Runnable r) {
@@ -175,7 +175,7 @@ public static ThreadFactory ofWebkit(CreateOptions createOptions, LaunchOptions
175175
* }
176176
*
177177
*}
178-
* </pre></blockQuotes>
178+
* </pre>
179179
*
180180
* @param clazz The user-defined {@link PlaywrightThread} class literal e.g. {@code CustomPlaywrightThread.class}
181181
* @return The {@link ThreadFactory} as described above.

0 commit comments

Comments
 (0)