From 1d902cce88d1875cbfaa7ee0c668ef89493b439f Mon Sep 17 00:00:00 2001 From: Darren Meiss Date: Mon, 25 Feb 2019 10:38:38 -0500 Subject: [PATCH] Edits to text in Optimistic Concurrency Ctrl doc (#39191) --- docs/reference/docs/concurrency-control.asciidoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/reference/docs/concurrency-control.asciidoc b/docs/reference/docs/concurrency-control.asciidoc index 780a9c7cf76..eeb5aca4ed0 100644 --- a/docs/reference/docs/concurrency-control.asciidoc +++ b/docs/reference/docs/concurrency-control.asciidoc @@ -31,7 +31,7 @@ PUT products/_doc/1567 // CONSOLE You can see the assigned sequence number and primary term in the -the `_seq_no` and `_primary_term` fields of the response: +`_seq_no` and `_primary_term` fields of the response: [source,js] -------------------------------------------------- @@ -53,8 +53,8 @@ the `_seq_no` and `_primary_term` fields of the response: // TESTRESPONSE[s/"_seq_no" : \d+/"_seq_no" : $body._seq_no/ s/"_primary_term" : 2/"_primary_term" : $body._primary_term/] -Elasticsearch keeps tracks of the sequence number and primary of the last -operation to have changed each of the document it stores. The sequence number +Elasticsearch keeps tracks of the sequence number and primary term of the last +operation to have changed each of the documents it stores. The sequence number and primary term are returned in the `_seq_no` and `_primary_term` fields in the response of the <>: