From 79c7e8b42ce0e508e1753f643c3b5765ac05701f Mon Sep 17 00:00:00 2001 From: Kevin Schaal <76872371+m31coding@users.noreply.github.com> Date: Tue, 7 Oct 2025 11:39:59 +0200 Subject: [PATCH] docs(README): Update section title to 'Making everything optional' --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d312204..82b30e0 100644 --- a/README.md +++ b/README.md @@ -518,7 +518,7 @@ university.AddStudent(s => s.Named("Alice", "King").OfAge(22)...); Note that if you want to set a member of a Fluent API class, you can simply use `FluentMember` or `FluentCollection` instead of the pattern above. -### Make everything optional +### Making everything optional There are two ways to make all fields, properties, and methods optional in your fluent API. If the initialization order matters for your use case, use the following approach: @@ -586,4 +586,4 @@ In particular, if your IDE visually indicates that there are errors in your code This library is free. If you find it valuable and wish to express your support, please leave a star. You are kindly invited to contribute. If you see the possibility for enhancement, please create a GitHub issue and you will receive timely feedback. -Happy coding! \ No newline at end of file +Happy coding!