Fix spelling mistake

This commit is contained in:
cosrnic 2024-02-24 00:46:23 +00:00 committed by iam
parent 0b66dd61db
commit 0555405064
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ public final class BoundingBox implements Shape {
* @param offset the offset
* @return a new bounding box with an offset.
*/
public @NotNull BoundingBox wtihOffset(Point offset) {
public @NotNull BoundingBox withOffset(Point offset) {
return new BoundingBox(this.width, this.height, this.depth, offset);
}