mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
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: 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
This commit is contained in:
committed by
Facebook GitHub Bot
parent
7f93b664b4
commit
8702b09bcc
+1
-1
@@ -124,7 +124,7 @@ std::vector<ExportedMethod> 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(),
|
||||
|
||||
Reference in New Issue
Block a user