Skip to content

Commit

Permalink
docs: address typo in comment (#325)
Browse files Browse the repository at this point in the history
  • Loading branch information
sofisl authored Apr 28, 2020
1 parent 0e31cd4 commit 02c63a2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion kms/asymmetricDecrypt.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async function asymmetricDecrypt(
// The location of the crypto key's key ring, e.g. "global"
const locationId = 'global';

// Construct the cyrpto key version ID
// Construct the crypto key version ID
const name = client.cryptoKeyVersionPath(
projectId,
locationId,
Expand Down
2 changes: 1 addition & 1 deletion kms/asymmetricEncrypt.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async function asymmetricEncrypt(
// The location of the crypto key's key ring, e.g. "global"
const locationId = 'global';

// Construct the cyrpto key version ID
// Construct the crypto key version ID
const name = client.cryptoKeyVersionPath(
projectId,
locationId,
Expand Down
2 changes: 1 addition & 1 deletion kms/asymmetricSign.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async function asymmetricSign(
// The location of the crypto key's key ring, e.g. "global"
const locationId = 'global';

// Construct the cyrpto key version ID
// Construct the crypto key version ID
const name = client.cryptoKeyVersionPath(
projectId,
locationId,
Expand Down
2 changes: 1 addition & 1 deletion kms/asymmetricVerify.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ async function asymmetricVerify(
// The location of the crypto key's key ring, e.g. "global"
const locationId = 'global';

// Construct the cyrpto key version ID
// Construct the crypto key version ID
const name = client.cryptoKeyVersionPath(
projectId,
locationId,
Expand Down
2 changes: 1 addition & 1 deletion kms/getPublicKey.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ async function getPublicKey(
// The location of the crypto key's key ring, e.g. "global"
const locationId = 'global';

// Construct the cyrpto key version ID
// Construct the crypto key version ID
const name = client.cryptoKeyVersionPath(
projectId,
locationId,
Expand Down

0 comments on commit 02c63a2

Please sign in to comment.