From 046dc0d5983dac233db4cb8e59162b1906cba75c Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Mon, 16 Nov 2020 11:49:30 -0800 Subject: [PATCH] plugin: Fix grammar in comments a bit :) --- plugin/src/Reconciler/applyPatch.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/src/Reconciler/applyPatch.lua b/plugin/src/Reconciler/applyPatch.lua index 352ed48f..a061bea7 100644 --- a/plugin/src/Reconciler/applyPatch.lua +++ b/plugin/src/Reconciler/applyPatch.lua @@ -86,7 +86,7 @@ local function applyPatch(instanceMap, patch) -- If the instance's className changed, we have a bumpy ride ahead while -- we recreate this instance and move all of its children into the new - -- copy atomically...ish. + -- version atomically...ish. if update.changedClassName ~= nil then -- If the instance's name also changed, we'll do it here, since this -- branch will skip the rest of the loop iteration. @@ -135,7 +135,7 @@ local function applyPatch(instanceMap, patch) -- Here are the non-critical failures. We know that the instance -- succeeded in creating and that assigning Name did not fail, but - -- other property assignments might've. + -- other property assignments might've failed. if not PatchSet.isEmpty(failedToReify) then PatchSet.assign(unappliedPatch, failedToReify) end