Skip to content

Commit 0538d37

Browse files
committed
Citation links in preparation for PR suggestions
1 parent 12fbcad commit 0538d37

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

src/items/functions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@ implementation.
230230
> aborts the process by executing an illegal instruction.
231231
232232
[panic-modes]: ../panic.md#panic-runtimes
233+
[Undefined Behavior]: ../behavior-considered-undefined.md
233234

234235
## Const functions
235236

src/linkage.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,3 +231,4 @@ runtime, so this prohibition does not apply to projects compiled with Cargo.
231231
[configuration option]: conditional-compilation.md
232232
[procedural macros]: procedural-macros.md
233233
[panic-runtime]: panic.md#panic-runtimes
234+
[`ffi_unwind_calls` lint]: ../rustc/lints/listing/allowed-by-default.html#ffi-unwind-calls

src/panic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Rust provides the ability to "panic" upon encountering a runtime error that is
44
not part of a function's signature; such an error is typically not expected to
55
be recoverable within the context in which the error is encountered.
66

7-
> The Standard Library provides this capability via the [`panic!` macro][macro-panic].
7+
> **Note**: The Standard Library provides this capability via the [`panic!` macro][macro-panic].
88
99
Although it is not part of the core language, panics interact with several core
1010
language features; for instance, out-of-bounds array indexing using the

0 commit comments

Comments
 (0)