diff --git a/lib/ui/channel_buffers.dart b/lib/ui/channel_buffers.dart index ba67c41269b9c32b15e682eb665a78fd6e28210c..a32a557e1f121b06bdbe3920573b1910e0e3925f 100644 --- a/lib/ui/channel_buffers.dart +++ b/lib/ui/channel_buffers.dart @@ -25,7 +25,7 @@ class _StoredMessage { /// A fixed-size circular queue. class _RingBuffer { - /// The underlying data for the RingBuffer. ListQueue's dynamically resize, + /// The underlying data for the RingBuffer. ListQueues dynamically resize, /// [_RingBuffer]s do not. final collection.ListQueue _queue; diff --git a/lib/web_ui/lib/src/ui/channel_buffers.dart b/lib/web_ui/lib/src/ui/channel_buffers.dart index 6ce0bc962f1f4b93e013a0f2b45625dd2d4a6366..fa587a907a1bc21a571819e5b52f68d5a04615e9 100644 --- a/lib/web_ui/lib/src/ui/channel_buffers.dart +++ b/lib/web_ui/lib/src/ui/channel_buffers.dart @@ -24,7 +24,7 @@ class _StoredMessage { /// A fixed-size circular queue. class _RingBuffer { - /// The underlying data for the RingBuffer. ListQueue's dynamically resize, + /// The underlying data for the RingBuffer. ListQueues dynamically resize, /// [_RingBuffer]s do not. final collection.ListQueue _queue; diff --git a/tools/android_lint/bin/main.dart b/tools/android_lint/bin/main.dart index f9a9e4359dc28883ace82fbccb049ca6a1617b74..9c632d24d108e347d843ef4add633bfa61b42e09 100644 --- a/tools/android_lint/bin/main.dart +++ b/tools/android_lint/bin/main.dart @@ -65,7 +65,7 @@ Future runLint(ArgParser argParser, ArgResults argResults) async { await baselineXml.delete(); } } - print('Preparing projext.xml...'); + print('Preparing project.xml...'); final IOSink projectXml = File(projectXmlPath).openWrite(); projectXml.write( ''' @@ -154,7 +154,7 @@ ArgParser setupOptions() { ) ..addOption( 'out', - help: 'The path to write the generated the HTML report to. Ignored if ' + help: 'The path to write the generated HTML report. Ignored if ' '--html is not also true.', defaultsTo: path.join(projectDir, 'lint_report'), ); diff --git a/web_sdk/test/api_conform_test.dart b/web_sdk/test/api_conform_test.dart index 8b7aee91fd56293de2b4ac294ff77796ea04ae07..ede590f271a011503d13ea84806cdd8f92933181 100644 --- a/web_sdk/test/api_conform_test.dart +++ b/web_sdk/test/api_conform_test.dart @@ -39,7 +39,7 @@ void main() { final Map uiClasses = {}; final Map webClasses = {}; - // Gather all public classes from each library. For now we are skiping + // Gather all public classes from each library. For now we are skipping // other top level members. _collectPublicClasses(uiUnit, uiClasses, 'lib/ui/'); _collectPublicClasses(webUnit, webClasses, 'lib/web_ui/lib/'); diff --git a/web_sdk/web_engine_tester/lib/golden_tester.dart b/web_sdk/web_engine_tester/lib/golden_tester.dart index 49b40aaf7cc5c350adde5cc07ea72826323c86cf..d8cf77059fa59c516f67416be27ecc6a2bd1cf02 100644 --- a/web_sdk/web_engine_tester/lib/golden_tester.dart +++ b/web_sdk/web_engine_tester/lib/golden_tester.dart @@ -65,7 +65,7 @@ Future matchGoldenFile(String filename, 'pixelComparison': pixelComparison.toString(), }; - // Chrome on macOS renders slighly differently from Linux, so allow it an + // Chrome on macOS renders slightly differently from Linux, so allow it an // extra 1% to deviate from the golden files. if (maxDiffRatePercent != null) { if (operatingSystem == OperatingSystem.macOs) {