From 24b26351963c1e4a0fe3802bafd8e6e7d7d21b4f Mon Sep 17 00:00:00 2001 From: Daniel Scherzer Date: Tue, 16 Dec 2025 01:48:34 -0800 Subject: [PATCH] external-blocks: add missing "and" in list When describing the type of functions declared in external blocks, include "and" before the last part of the description. --- src/items/external-blocks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/items/external-blocks.md b/src/items/external-blocks.md index b3a1d2fe9b..91fd18d66e 100644 --- a/src/items/external-blocks.md +++ b/src/items/external-blocks.md @@ -70,7 +70,7 @@ r[items.extern.fn.fn-ptr] When coerced to a function pointer, a function declared in an extern block has type `extern "abi" for<'l1, ..., 'lm> fn(A1, ..., An) -> R`, where `'l1`, ... `'lm` are its lifetime parameters, `A1`, ..., `An` are the declared types of -its parameters, `R` is the declared return type. +its parameters, and `R` is the declared return type. r[items.extern.static] ## Statics