From 26e165695d36bd064520c877b2dadd846898b2a6 Mon Sep 17 00:00:00 2001 From: "wahab." Date: Sat, 5 Sep 2026 17:42:19 +0530 Subject: [PATCH] docs: fix Timezone type name typo in README usage example Closes SunKit-Swift/SunKit#57 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9315598..b7c236d 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Attribution is essential to make sure that our hard work is properly recognized let naplesLocation: CLLocation = .init(latitude: 40.84014, longitude: 14.25226) // Timezone for the location of interest. It's highly recommended to initialize it via identifier -let timeZoneNaples: Timezone = .init(identifier: "Europe/Rome") ?? .current +let timeZoneNaples: TimeZone = .init(identifier: "Europe/Rome") ?? .current // Creating the Sun instance which will store all the information you need about sun events and his position var mySun: Sun = .init(location: naplesLocation, timeZone: timeZoneNaples)