File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ pub fn main() !void {
155155}
156156```
157157
158- ## 📚 All Types
158+ ## All Types
159159
160160### String Types (9)
161161
@@ -269,7 +269,7 @@ f.trunc() // Truncate
269269| ` Nullable(T) ` | Explicit null | ` isNull() ` , ` unwrapOr() ` |
270270| ` Lazy(T) ` | Lazy evaluation | ` isComputed() ` , ` reset() ` |
271271
272- ## 🔧 Validators
272+ ## Validators
273273
274274Direct validation functions without types:
275275
@@ -300,7 +300,7 @@ v.isHexString("0123abcdef") // true
300300v.matchesPattern("[0-9][0-9][0-9]", "123") // true
301301```
302302
303- ## ❌ Error Handling
303+ ## Error Handling
304304
305305``` zig
306306// Error messages and codes
@@ -336,7 +336,7 @@ const json = try errors.toJsonArray(allocator);
336336| E021 | TypeMismatch | wrong type |
337337| E099 | CustomValidationFailed | validation failed |
338338
339- ## 🏃 Examples
339+ ## Examples
340340
341341The library includes 5 comprehensive examples:
342342
@@ -348,14 +348,14 @@ zig build run-json_example # Full JSON workflow
348348zig build run-error_handling # Error management
349349```
350350
351- ## 🔨 Building
351+ ## Building
352352
353353``` bash
354354zig build # Build library
355355zig build test # Run 102 tests
356356zig build example # Run basic example
357357```
358358
359- ## 📄 License
359+ ## License
360360
361361This project is licensed under the MIT License - see the [ LICENSE] ( LICENSE ) file for details.
You can’t perform that action at this time.
0 commit comments