diff --git a/PULL_REQUEST_TEMPLATE.md b/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..0f567e5 --- /dev/null +++ b/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,7 @@ +#### Summary + + + +#### Reasoning + + diff --git a/README.md b/README.md index b1d6f54..39bb0ef 100644 --- a/README.md +++ b/README.md @@ -1808,7 +1808,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() @@ -1837,7 +1837,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