From a7b924654070f59297e86ff372ac74c5c701929f Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Mon, 22 Jul 2019 10:33:11 +0200 Subject: [PATCH] weasle, weasle --- src/libstd/primitive_docs.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libstd/primitive_docs.rs b/src/libstd/primitive_docs.rs index 5fa15f1fbde3..b7196a867013 100644 --- a/src/libstd/primitive_docs.rs +++ b/src/libstd/primitive_docs.rs @@ -1043,9 +1043,9 @@ mod prim_ref { } /// [`FnOnce`]: ops/trait.FnOnce.html /// /// Function pointers are pointers that point to *code*, not data. They can be called -/// just like functions. Like references, function pointers are assumed to not be null, -/// so if you want to pass a function pointer over FFI and be able to accommodate null pointers, -/// make your type `Option` with your required signature. +/// just like functions. Like references, function pointers are, among other things, assumed to +/// not be null, so if you want to pass a function pointer over FFI and be able to accommodate null +/// pointers, make your type `Option` with your required signature. /// /// Plain function pointers are obtained by casting either plain functions, or closures that don't /// capture an environment: