Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/file_path_url_converter.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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."
]
},
{
Expand Down