Skip to content

Commit

Permalink
Fixed Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
3arthqu4ke committed Aug 23, 2024
1 parent 85be879 commit 06cb20d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

/**
* The simplest {@link CommandLineReader} implementation,
* which reads {@link InAndOutProvider#getIn()} with a {@link BufferedReader}.
* which reads {@link InAndOutProvider}{@code .getIn()} with a {@link BufferedReader}.
*/
@CustomLog
public class BufferedCommandLineReader implements CommandLineReader {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import java.io.IOError;

/**
* An implementation of {@link CommandLineReader} that reads from the console supplied by {@link InAndOutProvider#getConsole()}.
* An implementation of {@link CommandLineReader} that reads from the console supplied by {@link InAndOutProvider}{@code .getConsole()}.
* This is usually {@link System#console()}.
*/
@CustomLog
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

/**
* A {@link CommandLineReader} that decides whether to use a {@link BufferedCommandLineReader} or a {@link ConsoleCommandLineReader}.
* If the {@link InAndOutProvider#getConsole()} is available a {@link ConsoleCommandLineReader} will be used always.
* If the {@link InAndOutProvider}{@code .getConsole()} is available a {@link ConsoleCommandLineReader} will be used always.
*
* @see BufferedCommandLineReader
* @see ConsoleCommandLineReader
Expand Down

0 comments on commit 06cb20d

Please sign in to comment.