Skip to content

Commit a0a4472

Browse files
WalterHubfhinkel
authored andcommitted
Fixes 'dencrypt' typos. (#1006)
Changed 'dencrypt' to 'decrypt'.
1 parent 7d5b05b commit a0a4472

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kms/keys.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ function decrypt(
639639
},
640640
};
641641

642-
// Dencrypts the file using the specified crypto key
642+
// Decrypts the file using the specified crypto key
643643
cloudkms.projects.locations.keyRings.cryptoKeys.decrypt(
644644
request,
645645
(err, response) => {
@@ -648,7 +648,7 @@ function decrypt(
648648
return;
649649
}
650650

651-
// Writes the dencrypted file to disk
651+
// Writes the decrypted file to disk
652652
const result = response.data;
653653
fs.writeFile(
654654
plaintextFileName,

0 commit comments

Comments
 (0)