From d95994b077ee5adb4b589a26545117bb4e937dd7 Mon Sep 17 00:00:00 2001 From: Luca Scheller Date: Mon, 30 Oct 2023 18:13:12 +0100 Subject: [PATCH] Fix typo --- src/CachedResolver/wrapResolverContext.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CachedResolver/wrapResolverContext.cpp b/src/CachedResolver/wrapResolverContext.cpp index 99cd7b2..dbd53ac 100644 --- a/src/CachedResolver/wrapResolverContext.cpp +++ b/src/CachedResolver/wrapResolverContext.cpp @@ -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(), "Get the mapping file path (Defaults to file that the context created via Resolver.CreateDefaultContextForAsset() opened")") + .def("GetMappingFilePath", &This::GetMappingFilePath, return_value_policy(), "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(), "Returns all mapping pairs as a dict")