Skip to content

Commit

Permalink
A few Javadoc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosame committed Jan 25, 2025
1 parent 4009dd6 commit 2f638e4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ protected float lengthValue(Value cv) {

/**
* Creates an INVALID_ACCESS_ERR exception.
* @param unit the unit.
* @param cv the value.
*/
protected DOMException createDOMException(Value cv) {
Object[] p = { cv.getCssText(), cv.getUnitType() };
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ public static FloatValue createConstant(short unit, float value) {
/**
* Creates a new value.
*
* @param unit the unit.
* @param value the value expressed in that unit.
* @param unitType the unit.
* @param floatValue the value expressed in that unit.
*/
public FloatValue(short unitType, float floatValue) {
this.unitType = unitType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class LexicalValue extends AbstractValue {
/**
* Creates a new LexicalValue object.
*
* @param params the lexical unit with the {@code var()} function(s).
* @param lunit the lexical unit with the {@code PROXY} function(s).
*/
public LexicalValue(LexicalUnit lunit) throws IllegalArgumentException {
super();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class PendingValue extends LexicalValue {
* Creates a new PendingValue object.
*
* @param shorthandName the shorthand name.
* @param the lexical unit that is pending substitution.
* @param lunit the lexical unit that is pending substitution.
*/
public PendingValue(String shorthandName, LexicalUnit lunit) throws IllegalArgumentException {
super(lunit);
Expand Down

0 comments on commit 2f638e4

Please sign in to comment.