From 71c107e0706f2c336a570d0dd020c50149c36bfd Mon Sep 17 00:00:00 2001 From: Ryan McGrath Date: Sun, 21 Aug 2022 16:04:20 -0700 Subject: [PATCH] Formatting fix --- src/image/image.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/image/image.rs b/src/image/image.rs index 0219557..3aeba50 100644 --- a/src/image/image.rs +++ b/src/image/image.rs @@ -192,8 +192,8 @@ impl Image { } /// Creates and returns an Image with the specified `SFSymbol`. Note that `SFSymbol` is - /// supported on macOS 11.0+ and iOS 13.0+; as such, this will panic if called on a - /// lower system. Take care to provide a fallback image or user experience if you + /// supported on macOS 11.0+ and iOS 13.0+; as such, this will panic if called on a + /// lower system. Take care to provide a fallback image or user experience if you /// need to support an older OS. /// /// This is `target_os` gated as SFSymbols is fairly Apple-specific. If another runtime @@ -220,7 +220,7 @@ impl Image { false => { #[cfg(feature = "appkit")] panic!("SFSymbols are only supported on macOS 11.0 and up."); - + #[cfg(all(feature = "uikit", not(feature = "appkit")))] panic!("SFSymbols are only supported on macOS 11.0 and up."); }