From c4b4adc16a76eb65a101eba684c137d097881ad0 Mon Sep 17 00:00:00 2001 From: weasdown <34220924+weasdown@users.noreply.github.com> Date: Tue, 27 Jan 2026 06:21:37 +0000 Subject: [PATCH] docs: fix typo in `compass_app` `BookingSummary` class doc (#2786) Fixes a [typo] in the [`compass_app`] sample's [`booking_summary.dart`]. The class doc for the `BookingSummary` class had "activities" written as "activitities". [`compass_app`]: https://github.com/flutter/samples/tree/main/compass_app [`booking_summary.dart`]: https://github.com/flutter/samples/blob/main/compass_app/app/lib/domain/models/booking/booking_summary.dart [typo]: https://github.com/flutter/samples/blob/7abc7b91f219e9cab71f537663057f2509a0d4a9/compass_app/app/lib/domain/models/booking/booking_summary.dart#L12C10-L12C22 Fixes #2785 . --- compass_app/app/lib/domain/models/booking/booking_summary.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compass_app/app/lib/domain/models/booking/booking_summary.dart b/compass_app/app/lib/domain/models/booking/booking_summary.dart index 4836e5ec5..633747fb8 100644 --- a/compass_app/app/lib/domain/models/booking/booking_summary.dart +++ b/compass_app/app/lib/domain/models/booking/booking_summary.dart @@ -9,7 +9,7 @@ part 'booking_summary.g.dart'; /// BookingSummary contains the necessary data to display a booking /// in the user home screen, but lacks the rest of the booking data -/// like activitities or destination. +/// like activities or destination. /// /// Use the [BookingRepository] to obtain a full [Booking] /// using the [BookingSummary.id].