You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ A library for comparing the ordering of variables and producing useful error mes
10
10
This library is based on the struct [`ComparisonError`], which can be used to compare the partial ordering
11
11
of two to three variables of any type `T` which implements the [`PartialOrd`] trait. If the comparison evaluates
12
12
to false, [`ComparisonError`] can be formatted into a nice error message. To simplify the usage, the procedural
13
-
macro [`compare_variables`] is provided via the feature flag **proc_macro** (enabled by default).
13
+
macro [`compare_variables`] is provided via the feature flag `proc_macro` (enabled by default).
14
14
15
15
The full API documentation is available at [https://docs.rs/compare_variables/0.2.0/compare_variables/](https://docs.rs/compare_variables/0.2.0/compare_variables/).
16
16
@@ -53,7 +53,7 @@ assert_eq!(err.to_string(), "`arg (value: 1) > 2 > z (value: 3)` is false");
53
53
54
54
# Usage without the procedural macro
55
55
56
-
In order to minimize dependencies, it is possible to use this crate without the **proc_macro** feature flag.
56
+
In order to minimize dependencies, it is possible to use this crate without the `proc_macro` feature flag.
57
57
Please see the docstring of [`ComparisonError`] for details.
0 commit comments