diff --git a/docs/design/README.md b/docs/design/README.md index 8327196a6b33..f9333961dfaf 100644 --- a/docs/design/README.md +++ b/docs/design/README.md @@ -3192,7 +3192,7 @@ available to C++ and a subset of C++ APIs will be available to Carbon. > References: > -> - [Bidirectional interoperability with C/C++](interoperability/README.md) +> - [Bidirectional interoperability with C and C++](interoperability/README.md) > - Proposal > [#175: C++ interoperability goals](https://github.com/carbon-language/carbon-lang/pull/175) diff --git a/docs/design/classes.md b/docs/design/classes.md index 6fe6d0d730dc..9c1fc4ea60b6 100644 --- a/docs/design/classes.md +++ b/docs/design/classes.md @@ -2106,7 +2106,7 @@ the type of `U.x`." - [#257: Initialization of memory and variables](https://github.com/carbon-language/carbon-lang/pull/257) - [Require compile-time-proven initialization](/proposals/p0257.md#require-compile-time-proven-initialization) - - [C/C++ uninitialized](/proposals/p0257.md#cc-uninitialized) + - [C and C++ uninitialized](/proposals/p0257.md#c-and-c-uninitialized) - [Allow passing unformed objects to parameters or returning them?](/proposals/p0257.md#allow-passing-unformed-objects-to-parameters-or-returning-them) - [Allow assigning an unformed object to another unformed object?](/proposals/p0257.md#allow-assigning-an-unformed-object-to-another-unformed-object) - [Fully destructive move (Rust)](/proposals/p0257.md#fully-destructive-move-rust) diff --git a/docs/design/interoperability/README.md b/docs/design/interoperability/README.md index 28601c491951..487567848a5e 100644 --- a/docs/design/interoperability/README.md +++ b/docs/design/interoperability/README.md @@ -1,4 +1,4 @@ -# Bidirectional interoperability with C/C++ +# Bidirectional interoperability with C and C++