Skip to content

Commit 0f7d02b

Browse files
authored
Fix case-sensitive spelling in non-common /eng (#5346)
* PR Feedback * Remove unnecessary instance --------- Co-authored-by: Anton Kolesnyk <[email protected]>
1 parent 3169251 commit 0f7d02b

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.vscode/cspell.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@
117117
"fibonacci",
118118
"francecentral",
119119
"gcovr",
120+
"gearama",
120121
"githubio",
121122
"gmock",
122123
"gtest",
@@ -282,6 +283,7 @@
282283
{
283284
"filename": "**/eng/**",
284285
"words": [
286+
"azblob",
285287
"TEAMPROJECTID",
286288
"issecret",
287289
"PSScriptRoot",

eng/pipelines/templates/steps/cmake-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ steps:
2323
VCPKG_BINARY_SOURCES: $(VCPKG_BINARY_SOURCES_SECRET)
2424
X_VCPKG_ASSET_SOURCES: $(X_VCPKG_ASSET_SOURCES_SECRET)
2525
26-
# Core should build all cmake tagets
26+
# Core should build all cmake targets
2727
- ${{ if and(eq(parameters.Build, true), eq(parameters.ServiceDirectory, 'core')) }}:
2828
- script: cmake --build . ${{ parameters.BuildArgs }}
2929
workingDirectory: build

eng/scripts/Test-ShouldReleaseToVcpkg.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ param(
55
[switch] $DailyRelease
66
)
77

8-
."$PSSCriptRoot/../common/scripts/common.ps1"
8+
."$PSScriptRoot/../common/scripts/common.ps1"
99

1010
Set-StrictMode -Version 3
1111

eng/scripts/Update-VcpkgBeta.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ param(
77
[string] $BuildIdentifier = $env:BUILD_BUILDID
88
)
99

10-
."$PSSCriptRoot/../common/scripts/common.ps1"
10+
."$PSScriptRoot/../common/scripts/common.ps1"
1111
Set-StrictMode -Version 3
1212

1313
# To ensure a clean synchronization remove all files at the destination.

0 commit comments

Comments
 (0)