fix console example (#71515)

This commit is contained in:
Alison Goryachev 2020-07-13 17:12:33 -04:00 committed by GitHub
parent 3ac8e367f8
commit 29580bee4e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,13 +27,13 @@ interface EditorExampleProps {
const exampleText = `
# index a doc
PUT index/1
PUT index/_doc/1
{
"body": "here"
}
# and get it ...
GET index/1
GET index/_doc/1
`;
export function EditorExample(props: EditorExampleProps) {