From d6986fda7e5d596ff8dd6ae23b7e48367cef0eb5 Mon Sep 17 00:00:00 2001 From: Hunhee Lee Date: Tue, 9 Jul 2024 06:07:46 +0900 Subject: [PATCH] Fix typos in README (#279) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 408515b..9f121ba 100644 --- a/README.md +++ b/README.md @@ -1804,7 +1804,7 @@ _You can enable the following settings in Xcode by running [this script](resourc let composition = AtmosphereComposition(nitrogen: 0.78, oxygen: 0.22) /// Generate the `atmosphere` first, **then** the `oceans`. Otherwise, the water will just boil off immediately. - /// - Comments not preceeding declarations can use doc comments, and will not be autocorrected into regular comments. + /// - Comments not preceding declarations can use doc comments, and will not be autocorrected into regular comments. /// This can be useful because Xcode applies markdown styling to doc comments but not regular comments. generateAtmosphere(using: composition) generateOceans() @@ -1833,7 +1833,7 @@ _You can enable the following settings in Xcode by running [this script](resourc } ``` - Regular comments are also allowed before a grouped block of delcarations, since it's possible that the comment refers to the block as a whole rather than just the following declaration: + Regular comments are also allowed before a grouped block of declarations, since it's possible that the comment refers to the block as a whole rather than just the following declaration: ```swift // RIGHT