Skip to content

Commit 3dcfb01

Browse files
committed
Remove reference to previous example
Was originally part of another document but no longer makes sense on a separate page
1 parent 2f25048 commit 3dcfb01

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

docs/search/returned-fields.asciidoc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ in how they work.
2828
==== Stored fields
2929

3030
When indexing a document, by default, Elasticsearch stores the originally sent JSON document in a special
31-
field called {ref_current}/mapping-source-field.html[_source]. The previous example demonstrated that the documents returned from
31+
field called {ref_current}/mapping-source-field.html[_source]. Documents returned from
3232
a search query are materialized from the `_source` field returned from Elasticsearch for each hit.
3333

3434
It is also possible to store a field from the JSON document _separately_ within Elasticsearch
@@ -113,7 +113,9 @@ var searchResponse = client.Search<Project>(s => s
113113
);
114114
----
115115
<1> **Include** the following fields
116+
116117
<2> **Exclude** the following fields
118+
117119
<3> Fields can be included or excluded through patterns
118120

119121
With source filtering specified on the request, `.Documents` will

src/Tests/Search/ReturnedFields.doc.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class ReturnedFields : SerializationTestBase
3131
/**==== Stored fields
3232
*
3333
* When indexing a document, by default, Elasticsearch stores the originally sent JSON document in a special
34-
* field called {ref_current}/mapping-source-field.html[_source]. The previous example demonstrated that the documents returned from
34+
* field called {ref_current}/mapping-source-field.html[_source]. Documents returned from
3535
* a search query are materialized from the `_source` field returned from Elasticsearch for each hit.
3636
*
3737
* It is also possible to store a field from the JSON document _separately_ within Elasticsearch

0 commit comments

Comments
 (0)