diff --git a/README.md b/README.md
index 39968f1..d0176ec 100644
--- a/README.md
+++ b/README.md
@@ -22,15 +22,15 @@ WeaselJSON is a high-performance, streaming JSON parser that uses callbacks inst
```mermaid
flowchart TD
- A[Need to parse JSON?] --> B{Do you want to parse
partial JSON documents?}
+ A[Need to parse JSON?] --> B{Memory or size constraints?}
- B -->|Yes| C[WeaselJSON
Streaming parser
Constant memory usage]
+ B -->|Yes| C[WeaselJSON
Streaming parser]
- B -->|No| D{Is maximum performance
critical?}
+ B -->|No| D{Need maximum speed?}
- D -->|No| E[SimdJSON DOM
Easy to use
Good performance]
+ D -->|No| E[SimdJSON DOM
Easy to use]
- D -->|Yes| F[SimdJSON On-Demand
Very fast
Forward-only traversal]
+ D -->|Yes| F[SimdJSON On-Demand
Fastest option]
```
## When to Use What