From 4e231821c74574140cef39c2314723a14ee74c8e Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Tue, 20 Sep 2022 13:39:01 +0200 Subject: [PATCH] Fix typo --- backend/src/physics/bounding-boxes/bounding-box-base.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/physics/bounding-boxes/bounding-box-base.ts b/backend/src/physics/bounding-boxes/bounding-box-base.ts index ed17dc5..91946c9 100644 --- a/backend/src/physics/bounding-boxes/bounding-box-base.ts +++ b/backend/src/physics/bounding-boxes/bounding-box-base.ts @@ -1,6 +1,6 @@ import { vec2 } from 'gl-matrix'; -// axes aligned +// axis-aligned export abstract class BoundingBoxBase { constructor( protected _xMin: number = 0,