Skip to content

Commit 6dfa339

Browse files
authored
Merge pull request #670 from nasso/patch-1
Add missing closing bracket
2 parents 9fa09f3 + 908c094 commit 6dfa339

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/conditional-compilation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ fn bewitched() {}
284284
```
285285

286286
> **Note**: The `cfg_attr` can expand to another `cfg_attr`. For example,
287-
> `#[cfg_attr(linux, cfg_attr(feature = "multithreaded", some_other_attribute))`
287+
> `#[cfg_attr(linux, cfg_attr(feature = "multithreaded", some_other_attribute))]`
288288
> is valid. This example would be equivalent to
289289
> `#[cfg_attr(all(linux, feature ="multithreaded"), some_other_attribute)]`.
290290

0 commit comments

Comments
 (0)