Description:
While exploring the codebase, I noticed that the word "upcoming" is misspelled as "upcomming" (with a double 'm') across several filenames, class names, and variables.
For consistency and code readability, we should fix this typo throughout the project.
Files affected include (but are not limited to):
lib/controllers/upcomming_rooms_controller.dart
lib/models/appwrite_upcomming_room.dart
lib/views/widgets/upcomming_room_tile.dart
Classes/Variables affected:
UpCommingListTile -> UpcomingListTile
AppwriteUpcommingRoom -> AppwriteUpcomingRoom
upcommingRoomsController -> upcomingRoomsController
Steps to Reproduce / Proposed Changes:
- Rename the affected files to use
upcoming_ instead of upcomming_.
- Do a global find and replace for
upcomming -> upcoming and UpComming -> Upcoming.
- Verify that all imports are updated correctly so the app still compiles.
I'd be happy to open a PR for this if it's assigned to me!
Description:
While exploring the codebase, I noticed that the word "upcoming" is misspelled as "upcomming" (with a double 'm') across several filenames, class names, and variables.
For consistency and code readability, we should fix this typo throughout the project.
Files affected include (but are not limited to):
lib/controllers/upcomming_rooms_controller.dartlib/models/appwrite_upcomming_room.dartlib/views/widgets/upcomming_room_tile.dartClasses/Variables affected:
UpCommingListTile->UpcomingListTileAppwriteUpcommingRoom->AppwriteUpcomingRoomupcommingRoomsController->upcomingRoomsControllerSteps to Reproduce / Proposed Changes:
upcoming_instead ofupcomming_.upcomming->upcomingandUpComming->Upcoming.I'd be happy to open a PR for this if it's assigned to me!