Did a bit of javadoc work. Removed pointless package-private method Guice.createEmptyInjector().

git-svn-id: https://google-guice.googlecode.com/svn/trunk@290 d779f126-a31b-0410-b53b-1d3aecad763e
diff --git a/src/com/google/inject/Module.java b/src/com/google/inject/Module.java
index 03becf2..bafbc75 100644
--- a/src/com/google/inject/Module.java
+++ b/src/com/google/inject/Module.java
@@ -18,7 +18,7 @@
 
 /**
  * A module contributes configuration information, typically interface
- * bindings, which will be used to create an {@link Injector}. A guice-based
+ * bindings, which will be used to create an {@link Injector}. A Guice-based
  * application is ultimately composed of little more than a set of
  * {@code Module}s and some bootstrapping code.
  *
@@ -28,7 +28,8 @@
 public interface Module {
 
   /**
-   * Contributes bindings and other configurations to a {@code Binder}.
+   * Contributes bindings and other configurations for this module to a
+   * {@code Binder}.
    */
   void configure(Binder binder);
 }