From f34449d10af742e436585189a3ad6d511a625139 Mon Sep 17 00:00:00 2001 From: Shibo Lyu Date: Wed, 9 Aug 2023 18:32:25 +0800 Subject: [PATCH] fix: Typo in fatalError. --- Sources/CropImage/CropImageView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/CropImage/CropImageView.swift b/Sources/CropImage/CropImageView.swift index 35cbc31..8187ca7 100644 --- a/Sources/CropImage/CropImageView.swift +++ b/Sources/CropImage/CropImageView.swift @@ -124,7 +124,7 @@ public struct CropImageView: View { #endif } else { #if os(macOS) - fatalError("Cropping is not supported on macOS versions before Ventrura 13.0.") + fatalError("Cropping is not supported on macOS versions before Ventura 13.0.") #elseif os(iOS) let window = UIWindow(frame: CGRect(origin: .zero, size: targetSize)) let hosting = UIHostingController(rootView: snapshotView)