Minor Javadoc changes.

git-svn-id: https://google-guice.googlecode.com/svn/trunk@277 d779f126-a31b-0410-b53b-1d3aecad763e
diff --git a/src/com/google/inject/binder/AnnotatedBindingBuilder.java b/src/com/google/inject/binder/AnnotatedBindingBuilder.java
index a5ddc08..2474315 100644
--- a/src/com/google/inject/binder/AnnotatedBindingBuilder.java
+++ b/src/com/google/inject/binder/AnnotatedBindingBuilder.java
@@ -26,7 +26,7 @@
 public interface AnnotatedBindingBuilder<T> extends LinkedBindingBuilder<T> {
 
   /**
-   * Specifies the marker annotation type for this binding.
+   * Specifies an annotation type for this binding.
    */
   LinkedBindingBuilder<T> annotatedWith(
       Class<? extends Annotation> annotationType);
diff --git a/src/com/google/inject/binder/AnnotatedConstantBindingBuilder.java b/src/com/google/inject/binder/AnnotatedConstantBindingBuilder.java
index f95545f..0c7c6ac 100644
--- a/src/com/google/inject/binder/AnnotatedConstantBindingBuilder.java
+++ b/src/com/google/inject/binder/AnnotatedConstantBindingBuilder.java
@@ -26,7 +26,7 @@
 public interface AnnotatedConstantBindingBuilder {
 
   /**
-   * Specifies the marker annotation type for this binding.
+   * Specifies an annotation type for this binding.
    */
   ConstantBindingBuilder annotatedWith(
       Class<? extends Annotation> annotationType);