Skip to content

Commit a38be6f

Browse files
Fix indentation issues in indexing.asciidoc (#793)
1 parent 6f0a044 commit a38be6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.doc/typedapi/examples/indexing.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ The standard way of indexing a document is to provide a `struct` to the `Request
88
document := struct {
99
Id int `json:"id"`
1010
Name string `json:"name"`
11-
Price int `json:"price"`
11+
Price int `json:"price"`
1212
}{
1313
Id: 1,
1414
Name: "Foo",
15-
Price: 10,
15+
Price: 10,
1616
}
1717
1818
res, err := es.Index("index_name").

0 commit comments

Comments
 (0)