Skip to content

Commit 29580be

Browse files
fix console example (#71515)
1 parent 3ac8e36 commit 29580be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/plugins/console/public/application/components/editor_example.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ interface EditorExampleProps {
2727

2828
const exampleText = `
2929
# index a doc
30-
PUT index/1
30+
PUT index/_doc/1
3131
{
3232
"body": "here"
3333
}
3434
3535
# and get it ...
36-
GET index/1
36+
GET index/_doc/1
3737
`;
3838

3939
export function EditorExample(props: EditorExampleProps) {

0 commit comments

Comments
 (0)