From 0239217bcdf78c96c1106a8214c5a327e5b4079f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Bleuse?= Date: Fri, 11 Nov 2022 04:27:58 +0900 Subject: [PATCH] Typo in field encryption doc (#1608) --- src/main/asciidoc/fieldlevelencryption.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/asciidoc/fieldlevelencryption.adoc b/src/main/asciidoc/fieldlevelencryption.adoc index 86fd9f3c..7554180a 100644 --- a/src/main/asciidoc/fieldlevelencryption.adoc +++ b/src/main/asciidoc/fieldlevelencryption.adoc @@ -8,7 +8,7 @@ Couchbase supports https://docs.couchbase.com/java-sdk/current/howtos/encrypting - Spring Data Couchbase 5.0.0-RC1 or above. == Overview -Fields annotated with com.couchbase.client.java.encryption.annotation.Encrypted (@Encrypted) will be automatically encrypted on read and decrypted on write. Unencrypted fields can be migrated to encrypted by specifying @Encrypted(migration = Encrypted.Migration.FROM_UNENCRYPTED). +Fields annotated with com.couchbase.client.java.encryption.annotation.Encrypted (@Encrypted) will be automatically encrypted on write and decrypted on read. Unencrypted fields can be migrated to encrypted by specifying @Encrypted(migration = Encrypted.Migration.FROM_UNENCRYPTED). == Getting Started & Configuration