jdk/src/share/classes/java/lang/Package.java
changeset 14014 da3648e13e67
parent 11117 b6e68b1344d4
child 14342 8435a30053c1
--- a/jdk/src/share/classes/java/lang/Package.java	Sat Sep 29 15:44:06 2012 +0400
+++ b/jdk/src/share/classes/java/lang/Package.java	Mon Oct 01 15:36:57 2012 +0100
@@ -316,7 +316,7 @@
      * attributes are defined in the manifests that accompany
      * the classes.
      *
-     * @param class the class to get the package of.
+     * @param c the class to get the package of.
      * @return the package of the class. It may be null if no package
      *          information is available from the archive or codebase.  */
     static Package getPackage(Class<?> c) {
@@ -411,14 +411,13 @@
     /**
      * Construct a package instance with the specified version
      * information.
-     * @param pkgName the name of the package
+     * @param name the name of the package
      * @param spectitle the title of the specification
      * @param specversion the version of the specification
      * @param specvendor the organization that maintains the specification
      * @param impltitle the title of the implementation
      * @param implversion the version of the implementation
      * @param implvendor the organization that maintains the implementation
-     * @return a new package for containing the specified information.
      */
     Package(String name,
             String spectitle, String specversion, String specvendor,