From 2714c02cb85db791aa62d8867e9922e92cf8b738 Mon Sep 17 00:00:00 2001 From: Albert Bori Date: Wed, 6 Dec 2023 09:47:10 -0500 Subject: [PATCH] grammar --- Sources/VSM/MutatingCopyable.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/VSM/MutatingCopyable.swift b/Sources/VSM/MutatingCopyable.swift index 91cd515..63422a5 100644 --- a/Sources/VSM/MutatingCopyable.swift +++ b/Sources/VSM/MutatingCopyable.swift @@ -36,7 +36,7 @@ public extension MutatingCopyable { /// Creates a mutated copy of this type while simultaneously mutating the value at the provided KeyPath. /// - /// - Parameter keyPath: The KeyPath of the property you want to mutate. Please not that this property MUST be a `var` in order to change it's value using this method. + /// - Parameter keyPath: The KeyPath of the property you want to mutate. Please not that this property MUST be a `var` in order to change its value using this method. /// - Parameter value: The new value you want set on the property. /// - Returns: A mutated copy of this type. func copy(mutatingPath keyPath: WritableKeyPath, value: T) -> Self {