--- old/src/share/classes/java/security/spec/DSAParameterSpec.java 2013-06-21 17:34:08.013831451 -0700 +++ new/src/share/classes/java/security/spec/DSAParameterSpec.java 2013-06-21 17:34:07.849831454 -0700 @@ -61,27 +61,27 @@ } /** - * Returns the prime p. + * Returns the prime {@code p}. * - * @return the prime p. + * @return the prime {@code p}. */ public BigInteger getP() { return this.p; } /** - * Returns the sub-prime q. + * Returns the sub-prime {@code q}. * - * @return the sub-prime q. + * @return the sub-prime {@code q}. */ public BigInteger getQ() { return this.q; } /** - * Returns the base g. + * Returns the base {@code g}. * - * @return the base g. + * @return the base {@code g}. */ public BigInteger getG() { return this.g;