Skip to content

Commit d2f1e17

Browse files
FrodoTheTrueAce Nassri
authored andcommitted
chore(samples): fix function name (#719)
1 parent 488a48f commit d2f1e17

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

compute/instances/windows/creating-managing-windows-instances/createWindowsServerInstanceExternalIP.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function main(
4545

4646
const compute = require('@google-cloud/compute');
4747

48-
async function createWndowsServerInstanceExpernalIP() {
48+
async function createWindowsServerInstanceExpernalIP() {
4949
const instancesClient = new compute.InstancesClient();
5050

5151
const [response] = await instancesClient.insert({
@@ -102,7 +102,7 @@ function main(
102102
console.log('Instance created.');
103103
}
104104

105-
createWndowsServerInstanceExpernalIP();
105+
createWindowsServerInstanceExpernalIP();
106106
// [END compute_create_windows_instance_external_ip]
107107
}
108108

compute/instances/windows/creating-managing-windows-instances/createWindowsServerInstanceInternalIP.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function main(
5555

5656
const compute = require('@google-cloud/compute');
5757

58-
async function createWndowsServerInstanceExpernalIP() {
58+
async function createWindowsServerInstanceInternalIP() {
5959
const instancesClient = new compute.InstancesClient();
6060

6161
const [response] = await instancesClient.insert({
@@ -112,7 +112,7 @@ function main(
112112
console.log('Instance created.');
113113
}
114114

115-
createWndowsServerInstanceExpernalIP();
115+
createWindowsServerInstanceInternalIP();
116116
// [END compute_create_windows_instance_internal_ip]
117117
}
118118

0 commit comments

Comments
 (0)