Removed old Javadocs.

git-svn-id: https://google-guice.googlecode.com/svn/trunk@267 d779f126-a31b-0410-b53b-1d3aecad763e
diff --git a/src/com/google/inject/Scope.java b/src/com/google/inject/Scope.java
index 59510b3..785d8a3 100644
--- a/src/com/google/inject/Scope.java
+++ b/src/com/google/inject/Scope.java
@@ -18,11 +18,12 @@
 
 /**
  * A scope is a level of visibility that instances provided by Guice may have.
- * By default, an instance created by the {@link Injector} has <i>no scope</i>,
- * meaning it has no visibility -- the Injector creates it, injects it once
- * into the class that required it, then immediately forgets it.  Associating a
- * scope with a particular binding allows the created instance to be
- * "remembered" and possibly used again for other injections.
+ * By default, an instance created by the {@link Injector} has <i>no
+ * scope</i>, meaning it has no state from the framework's perspective -- the
+ * {@code Injector} creates it, injects it once into the class that required it,
+ * and then immediately forgets it. Associating a scope with a particular binding
+ * allows the created instance to be "remembered" and possibly used again for
+ * other injections.
  *
  * @see Scopes#SINGLETON
  *