Skip to content

Commit 1c39968

Browse files
committed
Fix style
1 parent 47dc082 commit 1c39968

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
lang: Console
2-
# label:
2+
# label:
33
source: |
44
HEAD my-index-000001/_doc/0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
lang: Curl
2-
# label:
2+
# label:
33
source: |
44
curl -I "localhost:9200/my-index-000001/_doc/0?pretty"
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
lang: JavaScript
2-
# label:
2+
# label:
33
source: |
44
const response = await client.exists({
55
index: "my-index-000001",
66
id: 0,
77
});
8-
console.log(response);
8+
console.log(response);
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
lang: Python
2-
# label:
2+
# label:
33
source: |
44
resp = client.exists(
55
index="my-index-000001",
66
id="0",
77
)
8-
print(resp)
8+
print(resp)
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
- lang: Ruby
2-
# label:
2+
# label:
33
source: |
44
response = client.exists(
55
index: 'my-index-000001',
66
id: 0
77
)
8-
puts response
8+
puts response

0 commit comments

Comments
 (0)