Skip to content

Commit d609dd2

Browse files
committed
typos?
1 parent 2039ebf commit d609dd2

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/content/api/rest/http_methods.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# HTTP methods
22

3-
Accessing API is performed via HTTP. When you enter a URL into a web browser address bar, the browser performs an HTTP GET request to the URL. This usually returns a web page in the form of an HTTP response that the browser displays. But the GET method is one of several HTTP request methods. Magento REST API uses the four main HTTP methods: GET, POST, PUT, and DELETE. The most widespread methods are GET and POST. The other methods are less known but they became widely known due to the popularity of REST web services. An important concept of the REST architecture is that different HTTP request methods perform different actions when applied to the same URL.
3+
Accessing API is performed via HTTP. When you enter an URL into a web browser address bar, the browser performs an HTTP GET request to the URL. This usually returns a web page in the form of an HTTP response that the browser displays. But the GET method is one of several HTTP request methods. Magento REST API uses the four main HTTP methods: GET, POST, PUT, and DELETE. The most widespread methods are GET and POST. The other methods are less known but they became widely known due to the popularity of REST web services. An important concept of the REST architecture is that different HTTP request methods perform different actions when applied to the same URL.
44

55
For example:
66

@@ -32,7 +32,7 @@ You can retrieve a representation of a resource by getting its URL.
3232

3333
The POST method is defined in section 9.5 of the [RFC2616](http://www.ietf.org/rfc/rfc2616.txt) document:
3434

35-
> The POST method is used to request that the origin server accept the entity enclosed in the request as a new subordinate of the resource identified by the Request-URI in the Request-Line. POST is designed to allow a uniform method to cover the following functions:
35+
> The POST method is used to request that the origin server accept the entity enclosed in the request as a new subordinate of the resource identified by the Request-URI in the Request-Line. POST is designed to allow an uniform method to cover the following functions:
3636
>
3737
> * Annotation of existing resources;
3838
>

docs/content/api/rest/resources/products/product_categories.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ As a result, the category with ID equal to 2 will be assigned to the specified p
6060

6161
### HTTP Method: DELETE
6262

63-
**Description**: Allows you to remove a assigned category from a specified product.
63+
**Description**: Allows you to remove an assigned category from a specified product.
6464

6565
**Authentication**: Admin<br>
6666
**Default Format**: JSON<br>

docs/content/blog/posts/guides/2023-05-01-customize-your-openmage.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ echo -e "Order deny,allow\nDeny from all\n" > patches/.htaccess
7272
curl -L https://github.com/OpenMage/magento-lts/pull/3146.patch -o var/patches/3146_Add-form-key-validation-to-Contacts-form.patch
7373
```
7474

75-
Note, you can also have the patch downloaded at runtime by defining it as a URL instead of a local path.
75+
Note, you can also have the patch downloaded at runtime by defining it as an URL instead of a local path.
7676

7777
```json
7878
{

docs/content/blog/posts/guides/2025-03-11-brief-guide-on-grid-column.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The `addColumn()` method is the primary way to add columns to a grid in OpenMage
2323

2424
### Parameters:
2525

26-
1. `$columnId` (string): A unique identifier for the column. This ID is used to reference the column elsewhere in the code.
26+
1. `$columnId` (string): An unique identifier for the column. This ID is used to reference the column elsewhere in the code.
2727
2. `$column` (array): An array of column attributes that define the column's behavior and appearance.
2828

2929
## Column Attributes

0 commit comments

Comments
 (0)