Skip to content

Commit 4771065

Browse files
committed
doc: improve readme.md title
1 parent b33cee5 commit 4771065

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# ResultContainer: Rust Result Enums in Python
1+
# ResultContainer: Rust Result Enum in Python
22

33
<p align="left">
44
<img src="https://github.com/ScottBoyce-Python/ResultContainer/actions/workflows/ResultContainer-pytest.yml/badge.svg" alt="Build Status" height="20">
55
</p>
66

77
## About
88

9-
ResultContainer is a Python library inspired by [Rusts Result](https://doc.rust-lang.org/std/result/enum.Result.html) enum, designed for robust error handling. It seamlessly supports mathematical operations, attribute access, and method chaining on `Ok(value)`, while automatically transitioning to `Err(e)` upon encountering errors, ensuring continuous error tracking and logging. Ideal for developers seeking structured and functional error management in Python.
9+
ResultContainer is a Python library inspired by [Rust's Result](https://doc.rust-lang.org/std/result/enum.Result.html) enum, designed for robust error handling. It seamlessly supports mathematical operations, attribute access, and method chaining on `Ok(value)`, while automatically transitioning to `Err(e)` upon encountering errors, ensuring continuous error tracking and logging. Ideal for developers seeking structured and functional error management in Python.
1010

1111
## Description
1212

@@ -406,7 +406,7 @@ z = x + y # z = Ok([1, 2, 3, 4, 5, 6, 7])
406406

407407

408408

409-
### Wrapping `datetime Example
409+
### Wrapping `datetime` Example
410410

411411
```python
412412
from ResultContainer import Result, Ok, Err

0 commit comments

Comments
 (0)