From 45829daa856b376b1ab04d415917110b71b1dec5 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Wed, 5 Feb 2025 22:27:17 +0100 Subject: Apply formatting --- Hotline/Utility/RegularExpressions.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Hotline/Utility/RegularExpressions.swift') diff --git a/Hotline/Utility/RegularExpressions.swift b/Hotline/Utility/RegularExpressions.swift index c1f2a18..db705ae 100644 --- a/Hotline/Utility/RegularExpressions.swift +++ b/Hotline/Utility/RegularExpressions.swift @@ -20,7 +20,7 @@ struct RegularExpressions { } } } - + static let supportedLinkScheme = Regex { Anchor.startOfLine ChoiceOf { @@ -30,7 +30,7 @@ struct RegularExpressions { } "://" }.ignoresCase().anchorsMatchLineEndings() - + static let relaxedLink = Regex { ChoiceOf { Anchor.startOfLine @@ -138,7 +138,7 @@ struct RegularExpressions { } .anchorsMatchLineEndings() .ignoresCase() - + static let emailAddress = Regex { ChoiceOf { Anchor.startOfLine -- cgit