Skip to content

Commit

Permalink
minor rename
Browse files Browse the repository at this point in the history
  • Loading branch information
narmstro2020 committed Oct 5, 2024
1 parent 6cbed7d commit 43485ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wpiunits/src/main/java/edu/wpi/first/units/Units.java
Original file line number Diff line number Diff line change
Expand Up @@ -531,10 +531,10 @@ private Units() {
public static final ResistanceUnit Ohm = Ohms; // alias

/** A unit equal to 1,000 {@link #Ohms}. */
public static final ResistanceUnit Kiloohms = Kilo(Ohms);
public static final ResistanceUnit KiloOhms = Kilo(Ohms);

/** A unit equal to 1,000 {@link #Ohms}. */
public static final ResistanceUnit Kiloohm = Kiloohms; // alias
public static final ResistanceUnit KiloOhm = KiloOhms; // alias

/**
* Creates a unit equal to a thousandth of the base unit, eg Milliseconds = Milli(Units.Seconds).
Expand Down

0 comments on commit 43485ad

Please sign in to comment.