Skip to content

Commit f493c71

Browse files
keharperdobooth
andauthored
Apply suggestions from code review
Co-authored-by: Donald Booth <dobooth@adobe.com>
1 parent 22b74bc commit f493c71

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

app/code/Magento/CmsGraphQl/etc/schema.graphqls

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
type StoreConfig {
44
front : String @doc(description: "The landing page that is associated with the base URL.")
55
cms_home_page : String @doc(description: "The name of the CMS page that identifies the home page for the store.")
6-
no_route : String @doc(description: "The default page that displays when a 404 Page not Found error occurs.")
7-
cms_no_route : String @doc(description: "A specific CMS page that displays when a 404 Page Not Found error occurs.")
6+
no_route : String @doc(description: "The default page that displays when a 404 'Page not Found' error occurs.")
7+
cms_no_route : String @doc(description: "A specific CMS page that displays when a 404 'Page Not Found' error occurs.")
88
cms_no_cookies : String @doc(description: "A specific CMS page that displays when cookies are not enabled for the browser.")
99
show_cms_breadcrumbs : Int @doc(description: "Indicates whether a breadcrumb trail appears on all CMS pages in the catalog. 0 (No) or 1 (Yes).")
1010
}

app/code/Magento/GraphQl/etc/schema.graphqls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ input FilterTypeInput @doc(description: "Defines the comparison operators that c
6767

6868
input FilterEqualTypeInput @doc(description: "Defines a filter that matches the input exactly.") {
6969
in: [String] @doc(description: "Use this attribute to filter on an array of values. For example, to filter on category IDs 4, 5, and 6, specify a value of `[\"4\", \"5\", \"6\"]`.")
70-
eq: String @doc(description: "Use this attribute to exactly match the specified string. For example, to filter on a specific category ID, specify a value like `5`.")
70+
eq: String @doc(description: "Use this attribute to exactly match the specified string. For example, to filter on a specific category ID, specify a value such as `5`.")
7171
}
7272

7373
input FilterRangeTypeInput @doc(description: "Defines a filter that matches a range of values, such as prices or dates.") {

app/code/Magento/ReviewGraphQl/etc/schema.graphqls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ type ProductReviewRatingMetadata @doc(description: "Contains details about a sin
4444
values: [ProductReviewRatingValueMetadata!]! @doc(description: "List of product review ratings sorted by position.") @resolver(class: "Magento\\ReviewGraphQl\\Model\\Resolver\\ProductReviewRatingValueMetadata")
4545
}
4646

47-
type ProductReviewRatingValueMetadata @doc(description: "Contails details about a single value in a product review.") {
47+
type ProductReviewRatingValueMetadata @doc(description: "Contains details about a single value in a product review.") {
4848
value_id: String! @doc(description: "An encoded rating value ID.")
4949
value: String! @doc(description: "A ratings scale, such as the number of stars awarded.")
5050
}

app/code/Magento/ThemeGraphQl/etc/schema.graphqls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ type StoreConfig {
44
head_shortcut_icon : String @doc(description: "The small graphic image (favicon) that appears in the address bar and tab of the browser.")
55
default_title : String @doc(description: "The title that appears at the title bar of each page when viewed in a browser.")
66
title_prefix : String @doc(description: "A prefix that appears before the title to create a two- or three-part title.")
7-
title_suffix : String @doc(description: "A suffix that appears after the title to create a two-or three part title.")
7+
title_suffix : String @doc(description: "A suffix that appears after the title to create a two- or three-part title.")
88
default_description : String @doc(description: "The description that provides a summary of your site for search engine listings. It should not be more than 160 characters in length.")
99
default_keywords : String @doc(description: "A series of keywords that describe your store, each separated by a comma.")
1010
head_includes : String @doc(description: "Scripts that must be included in the HTML before the closing `<head>` tag.")

app/code/Magento/WeeeGraphQl/etc/schema.graphqls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type CartItemPrices {
1515
}
1616

1717
type FixedProductTax @doc(description: "A single FPT that can be applied to a product price.") {
18-
amount: Money @doc(description: "The mount of the Fixed Product Tax.")
18+
amount: Money @doc(description: "The amount of the Fixed Product Tax.")
1919
label: String @doc(description: "The display label assigned to the Fixed Product Tax.")
2020
}
2121

0 commit comments

Comments
 (0)