diff --git a/Sources/SnapshotTesting/AssertSnapshot.swift b/Sources/SnapshotTesting/AssertSnapshot.swift index 90d80af80..68d22c24f 100644 --- a/Sources/SnapshotTesting/AssertSnapshot.swift +++ b/Sources/SnapshotTesting/AssertSnapshot.swift @@ -56,7 +56,7 @@ public func assertSnapshot( /// /// - Parameters: /// - value: A value to compare against a reference. -/// - snapshotting: A dictionary of names and strategies for serializing, deserializing, and comparing values. +/// - strategies: A dictionary of names and strategies for serializing, deserializing, and comparing values. /// - recording: Whether or not to record a new reference. /// - timeout: The amount of time a snapshot must be generated in. /// - file: The file in which failure occurred. Defaults to the file name of the test case in which this function was called. @@ -90,7 +90,7 @@ public func assertSnapshots( /// /// - Parameters: /// - value: A value to compare against a reference. -/// - snapshotting: An array of strategies for serializing, deserializing, and comparing values. +/// - strategies: An array of strategies for serializing, deserializing, and comparing values. /// - recording: Whether or not to record a new reference. /// - timeout: The amount of time a snapshot must be generated in. /// - file: The file in which failure occurred. Defaults to the file name of the test case in which this function was called.