From 201c1073385c253a791194fe6f16dba4a94522e1 Mon Sep 17 00:00:00 2001 From: Haochen Li Date: Wed, 27 Jan 2021 15:56:33 -0800 Subject: [PATCH] fix typo (#30777) Summary: fix typo in comments ## Changelog fix typo in comments [CATEGORY] [TYPE] - Message Pull Request resolved: https://github.com/facebook/react-native/pull/30777 Reviewed By: RSNara Differential Revision: D26108277 Pulled By: PeteTheHeat fbshipit-source-id: 616c89263c9320bd914b26c1b814eadf316cf6d8 --- ReactCommon/jsi/jsi/jsi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReactCommon/jsi/jsi/jsi.h b/ReactCommon/jsi/jsi/jsi.h index 25c152227e6d57..f6c17e5bb670e0 100644 --- a/ReactCommon/jsi/jsi/jsi.h +++ b/ReactCommon/jsi/jsi/jsi.h @@ -122,7 +122,7 @@ class JSI_EXPORT HostObject { virtual void set(Runtime&, const PropNameID& name, const Value& value); // When JS wants a list of property names for the HostObject, it will - // call this method. If it throws an exception, the call will thow a + // call this method. If it throws an exception, the call will throw a // JS \c Error object. The default implementation returns empty vector. virtual std::vector getPropertyNames(Runtime& rt); };