From 666a11aa1a89744184126273e94a8567772c09bf Mon Sep 17 00:00:00 2001 From: Predrag Gruevski <2348618+obi1kenobi@users.noreply.github.com> Date: Tue, 4 Feb 2025 22:41:05 -0500 Subject: [PATCH] Clarify the documentation for the `public_api_sealed` property. (#753) (#757) --- src/rustdoc_schema.graphql | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/rustdoc_schema.graphql b/src/rustdoc_schema.graphql index b7b6a39..3691612 100644 --- a/src/rustdoc_schema.graphql +++ b/src/rustdoc_schema.graphql @@ -1163,8 +1163,9 @@ type Trait implements Item & Importable & GenericItem { a major change in the public API of those traits. Any breaking changes thus caused are explicitly in non-public-API, and shouldn't affect users that adhere to using only public API. - This is a weaker property than `sealed`, which shows whether the trait is unconditionally - prevented from being implemented — any implementation attempt will result in compile errors. + This is a weaker property than `unconditionally_sealed`, which shows whether the trait is + unconditionally prevented from being implemented meaning that any implementation attempt + will result in compile errors. All `unconditionally_sealed` traits are also `public_api_sealed`. """ public_api_sealed: Boolean!