about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorDylan DPC <99973273+Dylan-DPC@users.noreply.github.com>2022-03-05 04:46:41 +0100
committerGitHub <noreply@github.com>2022-03-05 04:46:41 +0100
commite8a0a4e2affe1897ac09255735d3ce3b8d89d5fa (patch)
tree9eda04a178c9fd0ff19d305ff58f33be6a09792d /src
parent38e3b32dfae34b06eaa20418e2191faf1bcb8b45 (diff)
parenta4cb2bfe34fa0cde40d880bc79e4a7c98f7dde4f (diff)
downloadrust-e8a0a4e2affe1897ac09255735d3ce3b8d89d5fa.tar.gz
rust-e8a0a4e2affe1897ac09255735d3ce3b8d89d5fa.zip
Rollup merge of #94631 - nebulatgs:patch-1, r=Dylan-DPC
Fix typo in c-variadic

Fixes a typo in the Unstable Book
Diffstat (limited to 'src')
-rw-r--r--src/doc/unstable-book/src/language-features/c-variadic.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/unstable-book/src/language-features/c-variadic.md b/src/doc/unstable-book/src/language-features/c-variadic.md
index 9e7968d906f..001c1bfa9ec 100644
--- a/src/doc/unstable-book/src/language-features/c-variadic.md
+++ b/src/doc/unstable-book/src/language-features/c-variadic.md
@@ -7,7 +7,7 @@ The tracking issue for this feature is: [#44930]
 ------------------------
 
 The `c_variadic` language feature enables C-variadic functions to be
-defined in Rust. The may be called both from within Rust and via FFI.
+defined in Rust. They may be called both from within Rust and via FFI.
 
 ## Examples