From 8702b09bcc135ccbb2072aef73535b2bb492c04f Mon Sep 17 00:00:00 2001 From: Derek Sargent Date: Thu, 14 Aug 2025 10:36:49 -0700 Subject: [PATCH] Fix spelling of Objective-C in warning message (#53283) Summary: Warning logs with correct spelling and formatting improve the developer experience. ## Changelog: [IOS] [FIXED] - Spelling and formatting of warning log related to Objective-C methods and their signatures. Pull Request resolved: https://github.com/facebook/react-native/pull/53283 Test Plan: Change is messaging (text) only. Reviewed By: jorge-cab Differential Revision: D80267373 Pulled By: rshest fbshipit-source-id: a07a6f685f14507578ced00d45f7ef0a3c69f23d --- .../core/platform/ios/ReactCommon/RCTInteropTurboModule.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTInteropTurboModule.mm b/packages/react-native/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTInteropTurboModule.mm index aec23484829..4de7185a777 100644 --- a/packages/react-native/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTInteropTurboModule.mm +++ b/packages/react-native/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTInteropTurboModule.mm @@ -124,7 +124,7 @@ std::vector parseExportedMethods(std::string moduleName, Class m NSMethodSignature *objCMethodSignature = [moduleClass instanceMethodSignatureForSelector:objCMethodSelector]; if (objCMethodSignature == nullptr) { RCTLogWarn( - @"The objective-c `%s` method signature for the JS method `%@` can not be found in the ObjecitveC definition of the %s module.\nThe `%@` JS method will not be available.", + @"The Objective-C `%s` method signature for the JS method `%@` can not be found in the Objective-C definition of the %s module.\nThe `%@` JS method will not be available.", methodInfo->objcName, jsMethodName, moduleName.c_str(),