aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/README.md b/README.md
index d39bd8e..25774f7 100644
--- a/README.md
+++ b/README.md
@@ -28,7 +28,7 @@ let object = &client as &dyn Client;
The last line of the above code fails to compile with:
-> error\[E0191\]: the value of the associated type `Error` (from trait `Client`)
+> error\[[E0191]\]: the value of the associated type `Error` (from trait `Client`)
> must be specified
To use dynamize you only have to make some small changes:
@@ -249,3 +249,5 @@ The passed number tells dynamize how many generic type parameters to expect.
* for 2 dynamize expects: `Type<A,B>: IntoIterator<Item=(A,B)> + FromIterator<(A,B)>`
* for 3 dynamize expects: `Type<A,B,C>: IntoIterator<Item=(A,B,C)> + FromIterator<(A,B,C)>`
* etc ...
+
+[E0191]: https://doc.rust-lang.org/stable/error_codes/E0191.html