Skip to content

Commit

Permalink
Abbreviate comparison in documentation
Browse files Browse the repository at this point in the history
The previous version caused bad visuals in the rendered documentation.
  • Loading branch information
Seelengrab committed Mar 10, 2024
1 parent 911fe3a commit 4b2d5bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ be sure to check the documentation of each respective feature to learn about the
| Vectors | `PropCheck.vector(len::AbstractIntegrated, objs::AbstractIntegrated)` | `Data.Vectors(objs::Data.Possibility; min_size=0, max_size=...) |
| Tuples | `PropCheck.tuple(len::AbstractIntegrated, objs::AbstractIntegrated)` | Currently unsupported, but could be added in a PR |
| Integers | `PropCheck.inegint`/`PropCheck.iposint` | `Data.Integers(min, max)` |
| Floating point | `PropCheck.ifloat(T)`/`PropCheck.ifloatinf(T)`/`PropCheck.ifloatnan(T)`/`PropCheck.ifloatinfnan(T)` | `Data.Floats{T}(; infs=<Bool>, nans=<Bool>)` |
| Floating point | `PropCheck.ifloat(T)` and its variants | `Data.Floats{T}(; infs=<Bool>, nans=<Bool>)` |
| Strings | `PropCheck.str(len::AbstractIntegrated, alphabet::AbstractIntegrated)` | `Data.Text(::Possibility{Char}; min_len=0, max_len=...)` |
| Stateful generation | `IntegratedOnce` | Unsupported due to deterministic replaying of finite generators being tricky |
| | `IntegratedFiniteIterator` | Unsupported due to deterministic replaying of finite generators being tricky |
Expand Down

0 comments on commit 4b2d5bf

Please sign in to comment.