Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit ac29a74

Browse files
authored
Again a two-word super tiny typo (#42181)
Find this when reading source code today... Btw, what about introducing a spell checker to Flutter source code? ;) ## Pre-launch Checklist - [ ] I read the [Contributor Guide] and followed the process outlined there for submitting PRs. - [ ] I read the [Tree Hygiene] wiki page, which explains my responsibilities. - [ ] I read and followed the [Flutter Style Guide] and the [C++, Objective-C, Java style guides]. - [ ] I listed at least one issue that this PR fixes in the description above. - [ ] I added new tests to check the change I am making or feature I am adding, or Hixie said the PR is test-exempt. See [testing the engine] for instructions on writing and running engine tests. - [ ] I updated/added relevant documentation (doc comments with `///`). - [ ] I signed the [CLA]. - [ ] All existing and new tests are passing. If you need help, consider asking for advice on the #hackers-new channel on [Discord]. <!-- Links --> [Contributor Guide]: https://github.com/flutter/flutter/wiki/Tree-hygiene#overview [Tree Hygiene]: https://github.com/flutter/flutter/wiki/Tree-hygiene [Flutter Style Guide]: https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo [C++, Objective-C, Java style guides]: https://github.com/flutter/engine/blob/main/CONTRIBUTING.md#style [testing the engine]: https://github.com/flutter/flutter/wiki/Testing-the-engine [CLA]: https://cla.developers.google.com/ [flutter/tests]: https://github.com/flutter/tests [breaking change policy]: https://github.com/flutter/flutter/wiki/Tree-hygiene#handling-breaking-changes [Discord]: https://github.com/flutter/flutter/wiki/Chat
1 parent 266524c commit ac29a74

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/ui/painting/display_list_deferred_image_gpu_impeller.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ class DlDeferredImageGPUImpeller final : public DlImage {
102102
fml::RefPtr<fml::TaskRunner> raster_task_runner);
103103

104104
// If a layer tree is provided, it will be flattened during the raster
105-
// thread task spwaned by this method. After being flattened into a display
105+
// thread task spawned by this method. After being flattened into a display
106106
// list, the image wrapper will be updated to hold this display list and the
107107
// layer tree can be dropped.
108108
void SnapshotDisplayList(std::unique_ptr<LayerTree> layer_tree = nullptr);

lib/ui/painting/display_list_deferred_image_gpu_skia.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ class DlDeferredImageGPUSkia final : public DlImage {
122122
fml::RefPtr<SkiaUnrefQueue> unref_queue);
123123

124124
// If a layer tree is provided, it will be flattened during the raster
125-
// thread task spwaned by this method. After being flattened into a display
125+
// thread task spawned by this method. After being flattened into a display
126126
// list, the image wrapper will be updated to hold this display list and the
127127
// layer tree can be dropped.
128128
void SnapshotDisplayList(std::unique_ptr<LayerTree> layer_tree = nullptr);

0 commit comments

Comments
 (0)