Skip to content

Commit 8654cbb

Browse files
authored
Merge pull request #10132 from sergten/patch-1
Fix a typo in certencoded-transact-sql.md
2 parents c9570b1 + 8609ba3 commit 8654cbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/t-sql/functions/certencoded-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ USE TARGET_DB;
142142
DECLARE @UNCIPHEREDTEXT_Target nvarchar(100);
143143
SET @UNCIPHEREDTEXT_Target = DECRYPTBYCERT(CERT_ID('TARGET_CERT'), @CIPHERTEXT);
144144
-- Encryption and decryption result in TARGET_DB
145-
SELECT @CLEARTEXT AS ClearTextInTarget, @CIPHERTEXT AS CipherTextInTarget, @UNCIPHEREDTEXT_Target AS DecriptedTextInTarget;
145+
SELECT @CLEARTEXT AS ClearTextInTarget, @CIPHERTEXT AS CipherTextInTarget, @UNCIPHEREDTEXT_Target AS DecryptedTextInTarget;
146146
GO
147147
```
148148

0 commit comments

Comments
 (0)