Skip to content

Commit 7dd5425

Browse files
committed
Fix style issues
1 parent 073ca42 commit 7dd5425

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/abi.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Function calls pass parameters and return values between the caller and the call
2222
> These are not fully documented here currently.
2323
2424
> [!WARNING]
25-
> Two types that are ABI Compatible may not allow the same set of values (e.g. [`*const T`] and [`core::ptr::NonNull<T>`]).
25+
> Two types that are ABI Compatible may not allow the same set of values (e.g. [`*const T`] and [`core::ptr::NonNull<T>`]).
2626
> If an invalid value is passed as a parameter or returned from a function, the result is immediate undefined behaviour, even if the parameter or return value is never used.
2727
> For example, passing a null pointer to a function that accepts a `NonNull<i32>` parameter via `fn(*const i32)` function pointer caused undefined behaviour.
2828
@@ -188,7 +188,6 @@ A call to a function `f` via a function item or function pointer with a given si
188188

189189
The behavior of a call that is not valid is undefined.
190190

191-
192191
> [!NOTE]
193192
> The ABI tag `extern "Rust"` is the default when the `extern` keyword is not used (either to declare the function within an [`extern` block], or as a [function qualifier][extern functions]). Thus it is safe to call most functions that use simd types.
194193

0 commit comments

Comments
 (0)