Skip to content

Commit 8609ba3

Browse files
authored
Fix a typo in certencoded-transact-sql.md
1 parent f274e76 commit 8609ba3

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)