From 8b7e1699f7ec4ff5f8168ddce765d25fc3e666ad Mon Sep 17 00:00:00 2001 From: prathik Date: Wed, 14 May 2025 19:52:31 -0700 Subject: [PATCH] [Docs] Correct notebook FilePathUrlConverter -> FileUrlPathConverter Closes #116. Correct class name in Jupyter Notebook from FilePathUrlConverter to FileUrlPathConverter. Signed-off-by: prathik --- examples/file_path_url_converter.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/file_path_url_converter.ipynb b/examples/file_path_url_converter.ipynb index 03b0da1..2fe6c99 100644 --- a/examples/file_path_url_converter.ipynb +++ b/examples/file_path_url_converter.ipynb @@ -19,11 +19,11 @@ "source": [ "Given the (current) lack of cross-platform lightweight C/C++ libraries for converting paths to/from `file://` URLs, OpenAssetIO comes bundled with a built-in utility to accomplish this.\n", "\n", - "This is in the form of a class `FilePathUrlConverter` with two methods `pathToUrl` and `pathFromUrl`.\n", + "This is in the form of a class `FileUrlPathConverter` with two methods `pathToUrl` and `pathFromUrl`.\n", "\n", "The implementation conforms to the large test case database used in the [swift-url](https://github.com/karwa/swift-url) project.\n", "\n", - "The `FilePathUrlConverter` class is not cheap to instantiate (it precompiles several regular expressions on construction). High-performance scenarios should construct a single instance and re-use it for each conversion." + "The `FileUrlPathConverter` class is not cheap to instantiate (it precompiles several regular expressions on construction). High-performance scenarios should construct a single instance and re-use it for each conversion." ] }, {