Skip to content

Commit

Permalink
Merge pull request #112 from blu3beri/fix/rn
Browse files Browse the repository at this point in the history
fix(js): fixed minor typos
  • Loading branch information
berendsliedrecht authored Feb 15, 2023
2 parents a1729a3 + 8949271 commit ba25067
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jsi::Function AnoncredsTurboModuleHostObject::call(jsi::Runtime &rt, const char
[this, cb](jsi::Runtime &rt, const jsi::Value &thisValue,
const jsi::Value *arguments, size_t count) -> jsi::Value {
const jsi::Value *val = &arguments[0];
turboModuleUtility::assertValueIsObject(rt, val);
anoncredsTurboModuleUtility::assertValueIsObject(rt, val);
return (*cb)(rt, val->getObject(rt));
});
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

using namespace facebook;

namespace anoncredsturboModuleUtility {
namespace anoncredsTurboModuleUtility {
static const int32_t arrayMaxSize = 255;
static const std::string errorPrefix = "Value `";
static const std::string errorInfix = "` is not of type ";
Expand Down

0 comments on commit ba25067

Please sign in to comment.