From a80a22508558513afccf0b0087873db2b690f3c0 Mon Sep 17 00:00:00 2001 From: Mikhail Dieterle Date: Mon, 9 May 2022 13:14:02 +0300 Subject: [PATCH] Fix a typo in Active Record Encryption guide --- guides/source/active_record_encryption.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/active_record_encryption.md b/guides/source/active_record_encryption.md index 6005f72a427c7..3dbacc2f5bec3 100644 --- a/guides/source/active_record_encryption.md +++ b/guides/source/active_record_encryption.md @@ -221,7 +221,7 @@ class Person end ``` -They will also work when combining encrypted and unencrypted data,git and when configuring previous encryption schemes. +They will also work when combining encrypted and unencrypted data, and when configuring previous encryption schemes. NOTE: If you want to ignore case, make sure to use `downcase:` or `ignore_case:` in the `encrypts` declaration. Using the `case_sensitive:` option in the validation won't work.