# HG changeset patch # User Jaroslav Tulach # Date 1362081639 -3600 # Node ID b4284da2fb3bb1f0d040e0fa2854eb6fb5d525c6 # Parent 033ea09379a0d2581e7449d39b98dff4b5723c4b Few tweaks to launcher's Javadoc diff -r 033ea09379a0 -r b4284da2fb3b rt/launcher/pom.xml --- a/rt/launcher/pom.xml Thu Feb 28 20:51:53 2013 +0100 +++ b/rt/launcher/pom.xml Thu Feb 28 21:00:39 2013 +0100 @@ -26,7 +26,6 @@ org.apache.maven.plugins maven-javadoc-plugin - 2.8.1 org.apidesign.bck2brwsr.launcher.impl diff -r 033ea09379a0 -r b4284da2fb3b rt/launcher/src/main/java/org/apidesign/bck2brwsr/launcher/Launcher.java --- a/rt/launcher/src/main/java/org/apidesign/bck2brwsr/launcher/Launcher.java Thu Feb 28 20:51:53 2013 +0100 +++ b/rt/launcher/src/main/java/org/apidesign/bck2brwsr/launcher/Launcher.java Thu Feb 28 21:00:39 2013 +0100 @@ -26,6 +26,9 @@ /** An abstraction for executing tests in a Bck2Brwsr virtual machine. * Either in {@linkm Launcher#createJavaScript JavaScript engine}, * or in {@linkm Launcher#createBrowser external browser}. + *

+ * There also are methods to {@link #showDir(java.io.File, java.lang.String) display pages} + * in an external browser served by internal HTTP server. * * @author Jaroslav Tulach */ @@ -98,11 +101,10 @@ } /** Starts an HTTP server which provides access to certain directory. * The startpage should be relative location inside the root - * driecotry - * Opens a browser with URL showing the start page. + * directory. Opens a browser with URL showing the start page. * * @param directory the root directory on disk - * @praam startpage relative path from the root to the page + * @param startpage relative path from the root to the page * @exception IOException if something goes wrong. */ public static Closeable showDir(File directory, String startpage) throws IOException {