Skip to content

Commit a155f98

Browse files
authored
docs: fix typos in some files (#2123)
This PR fixes typos in the file file using codespell.
2 parents b9fdc89 + e295b94 commit a155f98

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

build/GetVersion.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public override bool Execute()
3434
// The main version number we use for GCM contains the first three
3535
// components.
3636
// The assembly and file version numbers contain all components, as
37-
// ommitting the revision portion from these properties causes
37+
// omitting the revision portion from these properties causes
3838
// runtime failures on Windows.
3939
Version = $"{fullVersion.Major}.{fullVersion.Minor}.{fullVersion.Build}";
4040
AssemblyVersion = FileVersion = fullVersion.ToString();

src/linux/Packaging.Linux/pack.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ echo "Packing Packaging.Linux..."
7676

7777
# Cleanup any old archive files
7878
if [ -e "$TAROUT" ]; then
79-
echo "Deleteing old archive '$TAROUT'..."
79+
echo "Deleting old archive '$TAROUT'..."
8080
rm "$TAROUT"
8181
fi
8282

src/osx/Installer.Mac/dist.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ fi
8282

8383
# Cleanup any old package
8484
if [ -e "$DISTOUT" ]; then
85-
echo "Deleteing old product package '$DISTOUT'..."
85+
echo "Deleting old product package '$DISTOUT'..."
8686
rm "$DISTOUT"
8787
fi
8888

src/osx/Installer.Mac/pack.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ fi
5252

5353
# Cleanup any old component
5454
if [ -e "$PKGOUT" ]; then
55-
echo "Deleteing old component '$PKGOUT'..."
55+
echo "Deleting old component '$PKGOUT'..."
5656
rm "$PKGOUT"
5757
fi
5858

0 commit comments

Comments
 (0)