From 3d5e0ee1071bcbb38845401d8c38c56fc9491b72 Mon Sep 17 00:00:00 2001 From: Frank Lemanschik Date: Sat, 10 Sep 2022 21:12:31 +0000 Subject: [PATCH] [d8] Fix typo Add missing "W" (orker -> Worker). Change-Id: Ie4d8937085c2d2c6132e5d3c499ee3565c7b8b9b Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4004719 Auto-Submit: Frank Lemanschik Commit-Queue: Clemens Backes Reviewed-by: Clemens Backes Cr-Commit-Position: refs/heads/main@{#84063} --- AUTHORS | 1 + src/d8/d8-platforms.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index 1a3cddbd85..9696fc61d5 100644 --- a/AUTHORS +++ b/AUTHORS @@ -114,6 +114,7 @@ Fedor Indutny Felix Geisendörfer Feng Yu Filipe David Manana +Frank Lemanschik Franziska Hinkelmann Gao Sheng Geoffrey Garside diff --git a/src/d8/d8-platforms.h b/src/d8/d8-platforms.h index 3d7d3f8cab..b744e28453 100644 --- a/src/d8/d8-platforms.h +++ b/src/d8/d8-platforms.h @@ -14,7 +14,7 @@ class Isolate; class Platform; // Returns a predictable v8::Platform implementation. -// orker threads are disabled, idle tasks are disallowed, and the time reported +// Worker threads are disabled, idle tasks are disallowed, and the time reported // by {MonotonicallyIncreasingTime} is deterministic. std::unique_ptr MakePredictablePlatform( std::unique_ptr platform);