From bfacc98ebaa97269ac684f1312731b19fb500eea Mon Sep 17 00:00:00 2001 From: krrrr38 Date: Fri, 13 Feb 2026 05:58:59 +0900 Subject: [PATCH] fix: migration user creation code compilation error Signed-off-by: krrrr38 --- MIGRATION_GUIDE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MIGRATION_GUIDE.md b/MIGRATION_GUIDE.md index d6c7e9ac..9d98602c 100644 --- a/MIGRATION_GUIDE.md +++ b/MIGRATION_GUIDE.md @@ -362,8 +362,8 @@ All types use immutable builders: // v3 type construction CreateUserRequestContent request = CreateUserRequestContent .builder() - .email("test@example.com") .connection("Username-Password-Authentication") + .email("test@example.com") .password("secure-password") .build(); ```