Skip to content

Commit

Permalink
Merge pull request #176 from jsoref/spelling
Browse files Browse the repository at this point in the history
Spelling
  • Loading branch information
Stephen Shank authored Jan 17, 2020
2 parents 0ffc079 + a8a9118 commit 19e6cc8
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ under ComputeEngineCloud.
## [3.0.0] - 2019-03-13
### Fixed
- Removed windows username field from instance configuration; use runAsUser instead. Default user changed to jenkins from Build.
- Cleaned up imports, removed outdated terminology, and fixed type of shell for Windodws integration tests.
- Cleaned up imports, removed outdated terminology, and fixed type of shell for Windows integration tests.

## [2.0.0] - 2019-02-26
### Added
Expand Down
2 changes: 1 addition & 1 deletion checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ by Joshua Bloch in his book Effective Java -->
The (?<!TODO\(.{0,100}) makes the regex ignore any secondary TODO's on the line
so that things like //TODO(bob): remove this TODO on 1/1/2020 don't trigger a warning
because of the second TODO. (The {0,100} is because java doesn't recoginize arbitrary
because of the second TODO. (The {0,100} is because java doesn't recognize arbitrary
length look backs, but we know each java line should be < 100 chars.)
-->
<property name="format" value="((//.*)|(\*.*))(?&lt;!TODO\(.{0,100})(TODO[^(])|(TODO\([^)]*$)"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ public Collection<PlannedNode> provision(Label label, int excessWorkload) {
/**
* Choose config from list of available configs. Current implementation use round robin strategy
* starting at semi random element of list. Because most of times arriving requests asks for only
* 1 new node, we dont want to start every time from 1 element.
* 1 new node, we don't want to start every time from 1 element.
*
* @param configs List of configs to choose from.
* @return Chosen config from list.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ protected void _terminate(TaskListener listener) throws IOException, Interrupted
cloud.getProjectId(), this.zone, this.getNodeName(), createSnapshotTimeout);
}

// If the instance is running, attempt to terminate it. This is an asynch call and we
// If the instance is running, attempt to terminate it. This is an async call and we
// return immediately, hoping for the best.
cloud.getClient().terminateInstanceAsync(cloud.getProjectId(), zone, name);
} catch (CloudNotFoundException cnfe) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ protected Optional<Connection> setupConnection(
logSevere(
computer,
listener,
String.format("Failed to retreieve SSH keypair for instance: %s", node.getNodeName()));
String.format("Failed to retrieve SSH keypair for instance: %s", node.getNodeName()));
return Optional.empty();
}

Expand Down
2 changes: 1 addition & 1 deletion windows-image-install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#
# Following script works with the Windows 2016 image provided by GCE.
# If running a different version of Windows/Powershell, changes may be needed.
# We are in the first phase where we need to configure PowerShell, install Chocolately, install the OpenSSH Server.
# We are in the first phase where we need to configure PowerShell, install Chocolatey, install the OpenSSH Server.
Write-Output "Setting execution policy for PowerShell scripts...";
Set-ExecutionPolicy Bypass -Scope Process -Force;

Expand Down
2 changes: 1 addition & 1 deletion windows-it-install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#
# Following script works with the Windows 2016 image provided by GCE.
# Script may not work for other images/versions of Powershell.
# We are in the first phase where we need to configure PowerShell, install Chocolately, install the OpenSSH Server and the restart the VM.
# We are in the first phase where we need to configure PowerShell, install Chocolatey, install the OpenSSH Server and the restart the VM.

Write-Output "Setting execution policy for PowerShell scripts...";
Set-ExecutionPolicy Bypass -Scope Process -Force;
Expand Down

0 comments on commit 19e6cc8

Please sign in to comment.