From 8b6865b1280975ffcafe9e30983bab8eda344289 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Thu, 22 Jul 2021 20:03:39 +0100 Subject: [PATCH] LibJS: Add missing step number in PlainDatePrototype --- .../Libraries/LibJS/Runtime/Temporal/PlainDatePrototype.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibJS/Runtime/Temporal/PlainDatePrototype.cpp b/Userland/Libraries/LibJS/Runtime/Temporal/PlainDatePrototype.cpp index a09f442d85..b7bcace16e 100644 --- a/Userland/Libraries/LibJS/Runtime/Temporal/PlainDatePrototype.cpp +++ b/Userland/Libraries/LibJS/Runtime/Temporal/PlainDatePrototype.cpp @@ -50,7 +50,7 @@ static PlainDate* typed_this(GlobalObject& global_object) JS_DEFINE_NATIVE_FUNCTION(PlainDatePrototype::calendar_getter) { // 1. Let temporalDate be the this value. - // Perform ? RequireInternalSlot(temporalDate, [[InitializedTemporalDate]]). + // 2. Perform ? RequireInternalSlot(temporalDate, [[InitializedTemporalDate]]). auto* temporal_date = typed_this(global_object); if (vm.exception()) return {};