From 4fc7293c663c7532cce5396000d168a0330819f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yoann=20Rodi=C3=A8re?= Date: Thu, 26 Jan 2023 09:22:49 +0100 Subject: [PATCH] HHH-16069 Fix typo in migration guide --- migration-guide.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migration-guide.adoc b/migration-guide.adoc index f85125e466..35e7e83b78 100644 --- a/migration-guide.adoc +++ b/migration-guide.adoc @@ -161,7 +161,7 @@ false:: (the default) indicates to not use the CDI `BeanManager` to resolve thes The previous behavior was to always load the extensions from CDI if it was available. However, this can sometimes lead to timing issues with the `BeanManager` not being ready for use when we need those extension beans. Starting with 6.2, these extensions will only be resolved from the CDI -`BeanManager` is `hibernate.cdi.extensions` is set to true. +`BeanManager` if `hibernate.cdi.extensions` is set to true. [[enhancement]]