Skip to content

Commit 70a752d

Browse files
committed
Add unsafe to extern blocks in style guide
1 parent 80eb5a8 commit 70a752d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/doc/style-guide/src/items.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -449,8 +449,8 @@ entries, format it across multiple lines as with a type alias.
449449
## extern items
450450

451451
When writing extern items (such as `extern "C" fn`), always specify the ABI.
452-
For example, write `extern "C" fn foo ...`, not `extern fn foo ...`, or
453-
`extern "C" { ... }`.
452+
For example, write `extern "C" fn foo ...` or `unsafe extern "C" { ...}`
453+
and avoid `extern fn foo ...`.
454454

455455
## Imports (`use` statements)
456456

0 commit comments

Comments
 (0)