Skip to content

Commit 8702b09

Browse files
derekrsargentfacebook-github-bot
authored andcommitted
Fix spelling of Objective-C in warning message (#53283)
Summary: Warning logs with correct spelling and formatting improve the developer experience. ## Changelog: <!-- Help reviewers and the release process by writing your own changelog entry. Pick one each for the category and type tags: For more details, see: https://reactnative.dev/contributing/changelogs-in-pull-requests --> [IOS] [FIXED] - Spelling and formatting of warning log related to Objective-C methods and their signatures. Pull Request resolved: #53283 Test Plan: Change is messaging (text) only. Reviewed By: jorge-cab Differential Revision: D80267373 Pulled By: rshest fbshipit-source-id: a07a6f685f14507578ced00d45f7ef0a3c69f23d
1 parent 7f93b66 commit 8702b09

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/react-native/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTInteropTurboModule.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124
NSMethodSignature *objCMethodSignature = [moduleClass instanceMethodSignatureForSelector:objCMethodSelector];
125125
if (objCMethodSignature == nullptr) {
126126
RCTLogWarn(
127-
@"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.",
127+
@"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.",
128128
methodInfo->objcName,
129129
jsMethodName,
130130
moduleName.c_str(),

0 commit comments

Comments
 (0)