Skip to content

Commit 908c094

Browse files
authored
Add missing closing bracket
1 parent 9fa09f3 commit 908c094

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)