Skip to content

fix: correct multiple typos across the codebase #110

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public struct Foo {
/// This is the documentation for ``Swift/Array``.
///
/// This is the extension to ``Array`` with the longest documentation
/// comment, thus it is used for doucmenting the extended type in this
/// comment, thus it is used for documenting the extended type in this
/// target.
extension Array {
/// This is the documentation for the ``isArray`` property
Expand All @@ -30,7 +30,7 @@ extension Array {
/// This is the documentation for ``Swift/Int``.
///
/// This is the extension to ``Int`` with the longest documentation
/// comment, thus it is used for doucmenting the extended type in this
/// comment, thus it is used for documenting the extended type in this
/// target.
extension Int {
/// This is the documentation for the ``isArray`` property
Expand Down
2 changes: 1 addition & 1 deletion bin/update-gh-pages-documentation-site
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ cd gh-pages
git add docs

if [ -n "$(git status --porcelain)" ]; then
echo "Documentation changes found. Commiting the changes to the 'gh-pages' branch and pushing to origin."
echo "Documentation changes found. Committing the changes to the 'gh-pages' branch and pushing to origin."
git commit -m "Update GitHub Pages documentation site to '$CURRENT_COMMIT_HASH'."
git push origin HEAD:gh-pages
else
Expand Down