Skip to content

Commit

Permalink
Use lowercase "differences"
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Aug 20, 2024
1 parent b731837 commit 435d57e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/abi.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ with the same name (or with a well-known symbol), leading to undefined behavior.
extern "C" fn foo() {}
```

> **Edition Differences**: Before the 2024 edition it is allowed to use the `no_mangle` attribute without the `unsafe` qualification.
> **Edition differences**: Before the 2024 edition it is allowed to use the `no_mangle` attribute without the `unsafe` qualification.
## The `link_section` attribute

Expand All @@ -92,7 +92,7 @@ of memory not expecting them, such as mutable data into read-only areas.
pub static VAR1: u32 = 1;
```

> **Edition Differences**: Before the 2024 edition it is allowed to use the `link_section` attribute without the `unsafe` qualification.
> **Edition differences**: Before the 2024 edition it is allowed to use the `link_section` attribute without the `unsafe` qualification.
## The `export_name` attribute

Expand All @@ -109,7 +109,7 @@ behavior.
pub fn name_in_rust() { }
```

> **Edition Differences**: Before the 2024 edition it is allowed to use the `export_name` attribute without the `unsafe` qualification.
> **Edition differences**: Before the 2024 edition it is allowed to use the `export_name` attribute without the `unsafe` qualification.
[_MetaNameValueStr_]: attributes.md#meta-item-attribute-syntax
[`static` items]: items/static-items.md
Expand Down

0 comments on commit 435d57e

Please sign in to comment.