diff --git a/Sources/LevenshteinTransformations/LevenshteinTransformations.docc/GettingStarted.md b/Sources/LevenshteinTransformations/LevenshteinTransformations.docc/GettingStarted.md index 771cbbc..36a4b3b 100644 --- a/Sources/LevenshteinTransformations/LevenshteinTransformations.docc/GettingStarted.md +++ b/Sources/LevenshteinTransformations/LevenshteinTransformations.docc/GettingStarted.md @@ -42,7 +42,7 @@ Insert '10' at position 4 ``` #### Run Functions for the Steps -Directly run functions for the `replace`, `delete` and `insert` transformations using the ``Swift/Array/transform(to:functions:)`` (for strings: ``Swift/String/transform(to:functions:)``) function. +Directly run functions for the `replace`, `delete` and `insert` transformations using the ``Swift/Array/transform(to:functions:)-2wzm8`` (for strings: ``Swift/String/transform(to:functions:)-3b6nc``) function. ```swift var modified = source @@ -61,12 +61,15 @@ print(modified == target) ``` This example outputs `true`. +The transform functions are available in an asynchronous version: ``Swift/Array/transform(to:functions:)-756uw`` for arrays and ``Swift/String/transform(to:functions:)-46is`` for strings. + ### Arrays with Identifiable Elements The same functions are available for arrays with identifiable elements, but they are named differently to avoid conflicts: - ``Swift/Array/identifiableLevenshteinDistance(to:)`` - ``Swift/Array/identifiableGetTransformations(to:)`` -- ``Swift/Array/identifiableTransform(to:functions:)`` +- ``Swift/Array/identifiableTransform(to:functions:)-2500q`` +- ``Swift/Array/identifiableTransform(to:functions:)-1du5b`` ## Development _Levenshtein Transformations_ is an open source project. Visit the [Git repository][1] for bug reports, feature requests, pull requests and more information.