Skip to content

Commit

Permalink
Javadoc: Fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Nov 16, 2023
1 parent c73c2ce commit da009c1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ final class PointMap2DImpl<V>
/** X negative quadrant flag. */
private static final int XNEG = 1 << 3;

/** X postive quadrant flag. */
/** X positive quadrant flag. */
private static final int XPOS = 1 << 2;

/** Y negative quadrant flag. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ final class PointMap3DImpl<V>
/** X negative octant flag. */
private static final int XNEG = 1 << 5;

/** X postive octant flag. */
/** X positive octant flag. */
private static final int XPOS = 1 << 4;

/** Y negative octant flag. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ private static final class VariableSplitOctreeNode<V> {
/** X negative octant flag. */
private static final int XNEG = 1 << 5;

/** X postive octant flag. */
/** X positive octant flag. */
private static final int XPOS = 1 << 4;

/** Y negative octant flag. */
Expand Down

0 comments on commit da009c1

Please sign in to comment.