Fix typo in cURL documentation (#184701)

## Summary

Line 37 already has the ending quote.

## Testing Steps

I ran the same steps as in #182604 and saw that the typo was gone from
the UI. I was able to copy and paste the cURL command directly from the
UI to my terminal and it worked (with or without a pipeline).

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
Adam Kasztenny 2024-06-05 10:06:16 -04:00 committed by GitHub
parent 673a942a22
commit aa19cbc3d0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -32,7 +32,7 @@ export API_KEY="${apiKey}"`,
},
iconType: 'curl.svg',
id: Languages.CURL,
ingestData: ({ ingestPipeline }) => `curl -X POST "\$\{ES_URL\}/_bulk?pretty"${
ingestData: ({ ingestPipeline }) => `curl -X POST "\$\{ES_URL\}/_bulk?pretty${
ingestPipeline ? `&pipeline=${ingestPipeline}` : ''
}" \\
-H "Authorization: ApiKey "\$\{API_KEY\}"" \\