Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/ui/channel_buffers.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class _StoredMessage {

/// A fixed-size circular queue.
class _RingBuffer<T> {
/// 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<T> _queue;

Expand Down
2 changes: 1 addition & 1 deletion lib/web_ui/lib/src/ui/channel_buffers.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class _StoredMessage {

/// A fixed-size circular queue.
class _RingBuffer<T> {
/// 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<T> _queue;

Expand Down
4 changes: 2 additions & 2 deletions tools/android_lint/bin/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Future<int> 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(
'''<!-- THIS FILE IS GENERATED. PLEASE USE THE INCLUDED DART PROGRAM WHICH -->
Expand Down Expand Up @@ -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'),
);
Expand Down
2 changes: 1 addition & 1 deletion web_sdk/test/api_conform_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ void main() {
final Map<String, ClassDeclaration> uiClasses = <String, ClassDeclaration>{};
final Map<String, ClassDeclaration> webClasses = <String, ClassDeclaration>{};

// 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/');
Expand Down
2 changes: 1 addition & 1 deletion web_sdk/web_engine_tester/lib/golden_tester.dart
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Future<void> 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) {
Expand Down