From db261e0ede5a5f02ff99135bbbd71970905336d4 Mon Sep 17 00:00:00 2001
From: Jordan Zimmerman <jordan@jordanzimmerman.com>
Date: Fri, 5 Jan 2024 06:47:38 +0000
Subject: [PATCH] Add builderMode to options doc

---
 options.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/options.md b/options.md
index 3ff5d443..95414107 100644
--- a/options.md
+++ b/options.md
@@ -64,6 +64,7 @@ The names used for generated methods, classes, etc. can be changed via the follo
 | `@RecordBuilder.Options(inheritComponentAnnotations = true/false)`   | If true, any annotations (if applicable) on record components are copied to the builder methods. The default is `true`.           |
 | `@RecordBuilder.Options(addConcreteSettersForOptional = true/false)` | Add non-optional setter methods for optional record components. The default is `false`.                                           |
 | `@RecordBuilder.Options(useValidationApi = true/false)`              | Pass built records through the Java Validation API if it's available in the classpath. The default is `false`.                    |
+| `@RecordBuilder.Options(builderMode = BuilderMode.XXX)`              | Whether to add standard builder, staged builder or both. The default is `BuilderMode.STANDARD`.                                   |
 
 ## Default Values / Initializers