Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaScheller committed Oct 30, 2023
1 parent a46b732 commit d95994b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CachedResolver/wrapResolverContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ wrapResolverContext()
.def("__hash__", _Hash)
.def("__repr__", _Repr)
.def("ClearAndReinitialize", &This::ClearAndReinitialize, "Clear mapping and cache pairs and re-initialize context (with mapping file path)")
.def("GetMappingFilePath", &This::GetMappingFilePath, return_value_policy<return_by_value>(), "Get the mapping file path (Defaults to file that the context created via Resolver.CreateDefaultContextForAsset() opened")")
.def("GetMappingFilePath", &This::GetMappingFilePath, return_value_policy<return_by_value>(), "Get the mapping file path (Defaults to file that the context created via Resolver.CreateDefaultContextForAsset() opened")
.def("SetMappingFilePath", &This::SetMappingFilePath, "Set the mapping file path")
.def("RefreshFromMappingFilePath", &This::RefreshFromMappingFilePath, "Reload mapping pairs from the mapping file path")
.def("GetMappingPairs", &This::GetMappingPairs, return_value_policy<return_by_value>(), "Returns all mapping pairs as a dict")
Expand Down

0 comments on commit d95994b

Please sign in to comment.