Skip to content

Commit

Permalink
Fix code example format and typos (#4949)
Browse files Browse the repository at this point in the history
Signed-off-by: Melissa Vagi <vagimeli@amazon.com>
  • Loading branch information
vagimeli authored Aug 31, 2023
1 parent 71935cf commit 2e62d9e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions _api-reference/ingest-apis/processors/append.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ The following is the syntax for the `append` processor:

```json
{
"append": {
"field": "your_target_field",
"value": ["your_appended_value"]
}
"append": {
"field": "your_target_field",
"value": ["your_appended_value"]
}
}
```
{% include copy-curl.html %}
Expand Down Expand Up @@ -73,17 +73,17 @@ To test the pipeline, run the following query:
```json
POST _ingest/pipeline/user-behavior/_simulate
{
"docs":[
{
"_source":{
}
}
]
"docs":[
{
"_source":{
}
}
]
}
```
{% include copy-curl.html %}

#### Reponse
#### Response

The following response confirms that the pipeline is working as expected:

Expand Down
2 changes: 1 addition & 1 deletion _api-reference/ingest-apis/processors/bytes.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ POST _ingest/pipeline/file_upload/_simulate
```
{% include copy-curl.html %}

#### Reponse
#### Response

The following response confirms that the pipeline is working as expected:

Expand Down

0 comments on commit 2e62d9e

Please sign in to comment.