From f4a0c4787ecc548c0fecc30c456c9af988946b17 Mon Sep 17 00:00:00 2001 From: MongoCaleb Date: Thu, 26 Sep 2024 15:19:38 -0700 Subject: [PATCH] fix typo --- examples/dart/test/app_services_test.dart | 2 +- .../flutter/app_services_test.snippet.change-base-url.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/dart/test/app_services_test.dart b/examples/dart/test/app_services_test.dart index 31450211f7..0df8357871 100644 --- a/examples/dart/test/app_services_test.dart +++ b/examples/dart/test/app_services_test.dart @@ -47,7 +47,7 @@ void main() { test('Change BaseUrl', () async { // :snippet-start: change-base-url // Specify a custom baseUrl to connect to. - // In this case, an custom server instance running on the device. + // In this case, a custom server instance running on the device. final appConfig = AppConfiguration(customServerAppId, baseUrl: Uri.parse('http://localhost:80')); diff --git a/source/examples/generated/flutter/app_services_test.snippet.change-base-url.dart b/source/examples/generated/flutter/app_services_test.snippet.change-base-url.dart index 9506b7aebb..5cf00e0a16 100644 --- a/source/examples/generated/flutter/app_services_test.snippet.change-base-url.dart +++ b/source/examples/generated/flutter/app_services_test.snippet.change-base-url.dart @@ -1,5 +1,5 @@ // Specify a custom baseUrl to connect to. -// In this case, an custom server instance running on the device. +// In this case, a custom server instance running on the device. final appConfig = AppConfiguration(customServerAppId, baseUrl: Uri.parse('http://localhost:80'));