Silly code-style fixes

git-svn-id: https://google-guice.googlecode.com/svn/trunk@115 d779f126-a31b-0410-b53b-1d3aecad763e
diff --git a/src/com/google/inject/Scope.java b/src/com/google/inject/Scope.java
index bd94191..9b62f81 100644
--- a/src/com/google/inject/Scope.java
+++ b/src/com/google/inject/Scope.java
@@ -17,26 +17,25 @@
 package com.google.inject;
 
 /**
- * A scope which bound objects can reside in. Add a new scope using {@link
- * com.google.inject.ContainerBuilder#scope(String, Scope)} and reference it from
- * bindings using its name.
+ * A scope which bound objects can reside in. Add a new scope using
+ * {@link ContainerBuilder#scope} and reference it from bindings using its name.
  *
- * <p>Scope implementations should override {@code toString()} and include the
- * creator's {@code toString()} output. Doing so aids debugging.
+ * <p>Scope implementations should override {@link #toString} and include the
+ * creator's {#toString} output. Doing so aids debugging.
  *
  * @author crazybob@google.com (Bob Lee)
  */
 public interface Scope {
 
   /**
-   * Scopes a factory. The returned factory returns objects from this scope.
-   * If an object does not exist in this scope, the factory can use the given
+   * Scopes a factory. The returned factory returns objects from this scope. If
+   * an object does not exist in this scope, the factory can use the given
    * creator to create one.
    *
    * @param key binding key
    * @param creator creates new instances as needed
    * @return a new factory which only delegates to the given factory when an
-   *  instance of the requested object doesn't already exist in the scope
+   *     instance of the requested object doesn't already exist in the scope
    */
   public <T> Factory<T> scope(Key<T> key, Factory<T> creator);
 }