Skip to content
This repository was archived by the owner on Aug 16, 2021. It is now read-only.

Commit a32e238

Browse files
committed
Remove deprecated inner attribute syntax in quick start
1 parent 5955dce commit a32e238

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ error-chain = "0.5"
2525
Write this at the top of your crate:
2626

2727
```rust
28-
#![recursion_limit = "1024"];
28+
#![recursion_limit = "1024"]
2929
```
3030

3131
Again near the top of your crate, import the `error_chain` crate and its macros:

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
//! Write this at the top of your crate:
6666
//!
6767
//! ```ignore
68-
//! #![recursion_limit = "1024"];
68+
//! #![recursion_limit = "1024"]
6969
//! ```
7070
//!
7171
//! Again near the top of your crate, import the `error_chain` crate and its macros:

0 commit comments

Comments
 (0)