Fix comment

This commit is contained in:
R Midhun Suresh
2025-02-25 09:36:53 +05:30
parent 0ca6449f3c
commit 622e7e6821

View File

@@ -23,7 +23,7 @@ export class RoomNode {
/**
* This array holds references to the previous node in a given level.
* eg: previous[i] gives the next room node from this room node in level i.
* eg: previous[i] gives the previous room node from this room node in level i.
*/
public previous: RoomNode[] = [];
}