Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix minor typo in schema doc comment. #303

Merged
merged 2 commits into from
Nov 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 deletions src/rustdoc_schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ interface Item {
"""
Whether this item is eligible to be in the public API. This is true if both:
- The item is public, either explicitly (`pub`) or implicitly (like enum variants).
- The item is visible in documentation, or is not visible and but is deprecated,
- The item is visible in documentation, or is not visible but is deprecated,
since deprecated items are assumed to have been part of the public API in the past.

Being eligible to be part of the public API *does not* make an item public API!
Expand Down Expand Up @@ -116,7 +116,7 @@ type Module implements Item & Importable {
"""
Whether this item is eligible to be in the public API. This is true if both:
- The item is public, either explicitly (`pub`) or implicitly (like enum variants).
- The item is visible in documentation, or is not visible and but is deprecated,
- The item is visible in documentation, or is not visible but is deprecated,
since deprecated items are assumed to have been part of the public API in the past.

Being eligible to be part of the public API *does not* make an item public API!
Expand Down Expand Up @@ -178,7 +178,7 @@ type Struct implements Item & Importable & ImplOwner {
"""
Whether this item is eligible to be in the public API. This is true if both:
- The item is public, either explicitly (`pub`) or implicitly (like enum variants).
- The item is visible in documentation, or is not visible and but is deprecated,
- The item is visible in documentation, or is not visible but is deprecated,
since deprecated items are assumed to have been part of the public API in the past.

Being eligible to be part of the public API *does not* make an item public API!
Expand Down Expand Up @@ -264,7 +264,7 @@ type StructField implements Item {
"""
Whether this item is eligible to be in the public API. This is true if both:
- The item is public, either explicitly (`pub`) or implicitly (like enum variants).
- The item is visible in documentation, or is not visible and but is deprecated,
- The item is visible in documentation, or is not visible but is deprecated,
since deprecated items are assumed to have been part of the public API in the past.

Being eligible to be part of the public API *does not* make an item public API!
Expand Down Expand Up @@ -318,7 +318,7 @@ type Enum implements Item & Importable & ImplOwner {
"""
Whether this item is eligible to be in the public API. This is true if both:
- The item is public, either explicitly (`pub`) or implicitly (like enum variants).
- The item is visible in documentation, or is not visible and but is deprecated,
- The item is visible in documentation, or is not visible but is deprecated,
since deprecated items are assumed to have been part of the public API in the past.

Being eligible to be part of the public API *does not* make an item public API!
Expand Down Expand Up @@ -403,7 +403,7 @@ interface Variant implements Item {
"""
Whether this item is eligible to be in the public API. This is true if both:
- The item is public, either explicitly (`pub`) or implicitly (like enum variants).
- The item is visible in documentation, or is not visible and but is deprecated,
- The item is visible in documentation, or is not visible but is deprecated,
since deprecated items are assumed to have been part of the public API in the past.

Being eligible to be part of the public API *does not* make an item public API!
Expand Down Expand Up @@ -457,7 +457,7 @@ type PlainVariant implements Item & Variant {
"""
Whether this item is eligible to be in the public API. This is true if both:
- The item is public, either explicitly (`pub`) or implicitly (like enum variants).
- The item is visible in documentation, or is not visible and but is deprecated,
- The item is visible in documentation, or is not visible but is deprecated,
since deprecated items are assumed to have been part of the public API in the past.

Being eligible to be part of the public API *does not* make an item public API!
Expand Down Expand Up @@ -511,7 +511,7 @@ type TupleVariant implements Item & Variant {
"""
Whether this item is eligible to be in the public API. This is true if both:
- The item is public, either explicitly (`pub`) or implicitly (like enum variants).
- The item is visible in documentation, or is not visible and but is deprecated,
- The item is visible in documentation, or is not visible but is deprecated,
since deprecated items are assumed to have been part of the public API in the past.

Being eligible to be part of the public API *does not* make an item public API!
Expand Down Expand Up @@ -565,7 +565,7 @@ type StructVariant implements Item & Variant {
"""
Whether this item is eligible to be in the public API. This is true if both:
- The item is public, either explicitly (`pub`) or implicitly (like enum variants).
- The item is visible in documentation, or is not visible and but is deprecated,
- The item is visible in documentation, or is not visible but is deprecated,
since deprecated items are assumed to have been part of the public API in the past.

Being eligible to be part of the public API *does not* make an item public API!
Expand Down Expand Up @@ -636,7 +636,7 @@ interface ImplOwner implements Item & Importable {
"""
Whether this item is eligible to be in the public API. This is true if both:
- The item is public, either explicitly (`pub`) or implicitly (like enum variants).
- The item is visible in documentation, or is not visible and but is deprecated,
- The item is visible in documentation, or is not visible but is deprecated,
since deprecated items are assumed to have been part of the public API in the past.

Being eligible to be part of the public API *does not* make an item public API!
Expand Down Expand Up @@ -715,7 +715,7 @@ type Impl implements Item {
"""
Whether this item is eligible to be in the public API. This is true if both:
- The item is public, either explicitly (`pub`) or implicitly (like enum variants).
- The item is visible in documentation, or is not visible and but is deprecated,
- The item is visible in documentation, or is not visible but is deprecated,
since deprecated items are assumed to have been part of the public API in the past.

Being eligible to be part of the public API *does not* make an item public API!
Expand Down Expand Up @@ -798,7 +798,7 @@ type Trait implements Item & Importable {
"""
Whether this item is eligible to be in the public API. This is true if both:
- The item is public, either explicitly (`pub`) or implicitly (like enum variants).
- The item is visible in documentation, or is not visible and but is deprecated,
- The item is visible in documentation, or is not visible but is deprecated,
since deprecated items are assumed to have been part of the public API in the past.

Being eligible to be part of the public API *does not* make an item public API!
Expand Down Expand Up @@ -1000,7 +1000,7 @@ type Function implements Item & FunctionLike & Importable {
"""
Whether this item is eligible to be in the public API. This is true if both:
- The item is public, either explicitly (`pub`) or implicitly (like enum variants).
- The item is visible in documentation, or is not visible and but is deprecated,
- The item is visible in documentation, or is not visible but is deprecated,
since deprecated items are assumed to have been part of the public API in the past.

Being eligible to be part of the public API *does not* make an item public API!
Expand Down Expand Up @@ -1088,7 +1088,7 @@ type Method implements Item & FunctionLike {
"""
Whether this item is eligible to be in the public API. This is true if both:
- The item is public, either explicitly (`pub`) or implicitly (like enum variants).
- The item is visible in documentation, or is not visible and but is deprecated,
- The item is visible in documentation, or is not visible but is deprecated,
since deprecated items are assumed to have been part of the public API in the past.

Being eligible to be part of the public API *does not* make an item public API!
Expand Down Expand Up @@ -1148,7 +1148,7 @@ interface GlobalValue implements Item & Importable {
"""
Whether this item is eligible to be in the public API. This is true if both:
- The item is public, either explicitly (`pub`) or implicitly (like enum variants).
- The item is visible in documentation, or is not visible and but is deprecated,
- The item is visible in documentation, or is not visible but is deprecated,
since deprecated items are assumed to have been part of the public API in the past.

Being eligible to be part of the public API *does not* make an item public API!
Expand Down Expand Up @@ -1203,7 +1203,7 @@ type Constant implements Item & Importable & GlobalValue {
"""
Whether this item is eligible to be in the public API. This is true if both:
- The item is public, either explicitly (`pub`) or implicitly (like enum variants).
- The item is visible in documentation, or is not visible and but is deprecated,
- The item is visible in documentation, or is not visible but is deprecated,
since deprecated items are assumed to have been part of the public API in the past.

Being eligible to be part of the public API *does not* make an item public API!
Expand Down Expand Up @@ -1315,7 +1315,7 @@ type Static implements Item & Importable & GlobalValue {
"""
Whether this item is eligible to be in the public API. This is true if both:
- The item is public, either explicitly (`pub`) or implicitly (like enum variants).
- The item is visible in documentation, or is not visible and but is deprecated,
- The item is visible in documentation, or is not visible but is deprecated,
since deprecated items are assumed to have been part of the public API in the past.

Being eligible to be part of the public API *does not* make an item public API!
Expand Down Expand Up @@ -1461,7 +1461,7 @@ type AssociatedType implements Item {
"""
Whether this item is eligible to be in the public API. This is true if both:
- The item is public, either explicitly (`pub`) or implicitly (like enum variants).
- The item is visible in documentation, or is not visible and but is deprecated,
- The item is visible in documentation, or is not visible but is deprecated,
since deprecated items are assumed to have been part of the public API in the past.

Being eligible to be part of the public API *does not* make an item public API!
Expand Down Expand Up @@ -1537,7 +1537,7 @@ type AssociatedConstant implements Item {
"""
Whether this item is eligible to be in the public API. This is true if both:
- The item is public, either explicitly (`pub`) or implicitly (like enum variants).
- The item is visible in documentation, or is not visible and but is deprecated,
- The item is visible in documentation, or is not visible but is deprecated,
since deprecated items are assumed to have been part of the public API in the past.

Being eligible to be part of the public API *does not* make an item public API!
Expand Down