< prev index next >

src/java.base/share/classes/sun/reflect/generics/scope/ConstructorScope.java

Print this page

        

@@ -54,13 +54,13 @@
         // class in which it was declared.
         return ClassScope.make(getEnclosingClass());
     }
 
     /**
-     * Factory method. Takes a <tt>Constructor</tt> object and creates a
+     * Factory method. Takes a {@code Constructor} object and creates a
      * scope for it.
-     * @param m - A Constructor whose scope we want to obtain
+     * @param c - A Constructor whose scope we want to obtain
      * @return The type-variable scope for the constructor m
      */
     public static ConstructorScope make(Constructor<?> c) {
         return new ConstructorScope(c);
     }
< prev index next >