diff --git a/compute/instances/windows/creating-managing-windows-instances/createWindowsServerInstanceExternalIP.js b/compute/instances/windows/creating-managing-windows-instances/createWindowsServerInstanceExternalIP.js index b330756aa8..a76fc0f61d 100644 --- a/compute/instances/windows/creating-managing-windows-instances/createWindowsServerInstanceExternalIP.js +++ b/compute/instances/windows/creating-managing-windows-instances/createWindowsServerInstanceExternalIP.js @@ -45,7 +45,7 @@ function main( const compute = require('@google-cloud/compute'); - async function createWndowsServerInstanceExpernalIP() { + async function createWindowsServerInstanceExpernalIP() { const instancesClient = new compute.InstancesClient(); const [response] = await instancesClient.insert({ @@ -102,7 +102,7 @@ function main( console.log('Instance created.'); } - createWndowsServerInstanceExpernalIP(); + createWindowsServerInstanceExpernalIP(); // [END compute_create_windows_instance_external_ip] } diff --git a/compute/instances/windows/creating-managing-windows-instances/createWindowsServerInstanceInternalIP.js b/compute/instances/windows/creating-managing-windows-instances/createWindowsServerInstanceInternalIP.js index c256159314..54aa921e78 100644 --- a/compute/instances/windows/creating-managing-windows-instances/createWindowsServerInstanceInternalIP.js +++ b/compute/instances/windows/creating-managing-windows-instances/createWindowsServerInstanceInternalIP.js @@ -55,7 +55,7 @@ function main( const compute = require('@google-cloud/compute'); - async function createWndowsServerInstanceExpernalIP() { + async function createWindowsServerInstanceInternalIP() { const instancesClient = new compute.InstancesClient(); const [response] = await instancesClient.insert({ @@ -112,7 +112,7 @@ function main( console.log('Instance created.'); } - createWndowsServerInstanceExpernalIP(); + createWindowsServerInstanceInternalIP(); // [END compute_create_windows_instance_internal_ip] }