Merge branch 'subtree'
[fanfix.git] / src / jexer / package-info.java
index c1c24e87f52ba07fa7750f733b18f2df6f116665..300f9731a26ea9728ac27e4ef91e82f0ecbc2f34 100644 (file)
@@ -31,7 +31,7 @@
  * Jexer - Java Text User Interface library
  *
  * <p>
- * This library is a text-based windowing system loosely reminiscient of
+ * This library is a text-based windowing system loosely reminiscent of
  * Borland's <a href="http://en.wikipedia.org/wiki/Turbo_Vision">Turbo
  * Vision</a> library.  Jexer's goal is to enable people to get up and
  * running with minimum hassle and lots of polish.  A very quick "Hello
@@ -43,8 +43,8 @@
  *
  * public class MyApplication extends TApplication {
  *
- *     public MyApplication() {
- *         super();
+ *     public MyApplication() throws Exception {
+ *         super(BackendType.XTERM);
  *
  *         // Create standard menus for Tool, File, and Window.
  *         addToolMenu();
@@ -52,7 +52,7 @@
  *         addWindowMenu();
  *     }
  *
- *     public static void main(String [] args) {
+ *     public static void main(String [] args) throws Exception {
  *         MyApplication app = new MyApplication();
  *         app.run();
  *     }