Skip to content
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
2 changes: 1 addition & 1 deletion build/azure-pipelines/product-npm-package-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ variables:

jobs:
- job: ValidateNpmPackages
displayName: Valiate NPM packages against Terrapin
displayName: Validate NPM packages against Terrapin
pool:
name: 1es-ubuntu-22.04-x64
os: linux
Expand Down
2 changes: 1 addition & 1 deletion build/azure-pipelines/win32/exec.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<#
.SYNOPSIS
This is a helper function that runs a scriptblock and checks the PS variable $lastexitcode
to see if an error occcured. If an error is detected then an exception is thrown.
to see if an error occurred. If an error is detected then an exception is thrown.
This function allows you to run command-line programs without having to
explicitly check the $lastexitcode variable.

Expand Down
2 changes: 1 addition & 1 deletion build/lib/mangle/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ class ClassData {

static makeImplicitPublicActuallyPublic(data: ClassData, reportViolation: (name: string, what: string, why: string) => void): void {
// TS-HACK
// A subtype can make an inherited protected field public. To prevent accidential
// A subtype can make an inherited protected field public. To prevent accidental
// mangling of public fields we mark the original (protected) fields as public...
for (const [name, info] of data.fields) {
if (info.type !== FieldType.Public) {
Expand Down