spot fix of some binder javadoc

git-svn-id: https://google-guice.googlecode.com/svn/trunk@295 d779f126-a31b-0410-b53b-1d3aecad763e
diff --git a/javadoc/com/google/inject/Binder.html b/javadoc/com/google/inject/Binder.html
index 910c0b9..cb322e4 100644
--- a/javadoc/com/google/inject/Binder.html
+++ b/javadoc/com/google/inject/Binder.html
@@ -123,10 +123,10 @@
      bind(Service.class).to(ServiceImpl.class);</pre>
 
  Specifies that a request for a <code>Service</code> instance with no binding
- annotations should be treated as if it were a request for a <code>MyImpl</code>
+ annotations should be treated as if it were a request for a <code>ServiceImpl</code>
  instance. This <i>overrides</i> the function of any
  <A HREF="../../../com/google/inject/ImplementedBy.html" title="annotation in com.google.inject"><CODE>@ImplementedBy</CODE></A> or <A HREF="../../../com/google/inject/ProvidedBy.html" title="annotation in com.google.inject"><CODE>@ProvidedBy</CODE></A>
- annotations found on <code>MyInterface</code>, since Guice will have already
+ annotations found on <code>Service</code>, since Guice will have already
  "moved on" to <code>ServiceImpl</code> before it reaches the point when it starts
  looking for these annotations.