Skip to content

Commit d33de4a

Browse files
update readme.md
1 parent a10a89c commit d33de4a

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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

274274
Direct validation functions without types:
275275

@@ -300,7 +300,7 @@ v.isHexString("0123abcdef") // true
300300
v.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

341341
The library includes 5 comprehensive examples:
342342

@@ -348,14 +348,14 @@ zig build run-json_example # Full JSON workflow
348348
zig build run-error_handling # Error management
349349
```
350350

351-
## 🔨 Building
351+
## Building
352352

353353
```bash
354354
zig build # Build library
355355
zig build test # Run 102 tests
356356
zig build example # Run basic example
357357
```
358358

359-
## 📄 License
359+
## License
360360

361361
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

0 commit comments

Comments
 (0)