Skip to content

Commit a69f8cf

Browse files
link fixes (#85)
1 parent 9632a7b commit a69f8cf

File tree

1 file changed

+30
-30
lines changed

1 file changed

+30
-30
lines changed

source/fundamentals/atlas-search.txt

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ The search returns the following document:
105105

106106
{ "_id" : 2, "make" : "Gibson", "description" : "Classic guitars known for their rich, full tones.", "establishedYear" : 1902, "in-stock" : true, "rating" : 8 }
107107

108-
To learn more about the ``autocomplete`` operator, see the :atlas:`
109-
autocomplete </atlas-search/autocomplete>` Atlas guide.
108+
To learn more about the ``autocomplete`` operator, see the :atlas:`autocomplete </atlas-search/autocomplete>`
109+
Atlas guide.
110110

111111
Compound
112112
~~~~~~~~
@@ -135,8 +135,8 @@ The search returns the following documents:
135135
{ "_id" : 3, "make" : "PRS", "description" : "...", "establishedYear" : 1985, "in-stock" : true, "rating" : 9 }
136136
{ "_id" : 5, "make" : "Ibanez", "description" : "...", "establishedYear" : 1957, "in-stock" : true, "rating" : 7 }
137137

138-
To learn more about the ``compound`` operator, see the :atlas:`
139-
compound </atlas-search/compound>` Atlas guide.
138+
To learn more about the ``compound`` operator, see the :atlas:`compound </atlas-search/compound>`
139+
Atlas guide.
140140

141141
Equals
142142
~~~~~~
@@ -163,8 +163,8 @@ The search returns the following documents:
163163
{ "_id" : 5, "make" : "Ibanez", "description" : "...", "establishedYear" : 1957, "in-stock" : true, "rating" : 7 }
164164

165165

166-
To learn more about the ``equals`` operator, see the :atlas:`
167-
equals </atlas-search/equals>` Atlas guide.
166+
To learn more about the ``equals`` operator, see the :atlas:`equals </atlas-search/equals>`
167+
Atlas guide.
168168

169169
Exists
170170
~~~~~~
@@ -192,8 +192,8 @@ The search returns the following documents:
192192
{ "_id" : 5, "make" : "Ibanez", "description" : "...", "establishedYear" : 1957, "in-stock" : true, "rating" : 7 }
193193

194194

195-
To learn more about the ``exists`` operator, see the :atlas:`
196-
exists </atlas-search/exists>` Atlas guide.
195+
To learn more about the ``exists`` operator, see the :atlas:`exists </atlas-search/exists>`
196+
Atlas guide.
197197

198198
GeoShape
199199
~~~~~~~~
@@ -231,8 +231,8 @@ The search returns the following document:
231231

232232
{ "_id" : 1, "make" : "Fender", "description" : "...", "establishedYear" : 1946, "in-stock" : true, "in-stock-location" : { "type" : "Point", "coordinates" : ["-73.93615", "40.69791"] }, "rating" : 9 }
233233

234-
To learn more about the ``geoShape`` operator, see the :atlas:`
235-
geoShape </atlas-search/geoShape>` Atlas guide.
234+
To learn more about the ``geoShape`` operator, see the :atlas:`geoShape </atlas-search/geoShape>`
235+
Atlas guide.
236236

237237
GeoWithin
238238
~~~~~~~~~
@@ -277,8 +277,8 @@ The search returns the following document:
277277

278278
{ "_id" : 1, "make" : "Fender", "description" : "Classic guitars known for their versatility.", "establishedYear" : 1946, "in-stock" : true, "in-stock-location" : { "type" : "Point", "coordinates" : ["-73.93615", "40.69791"] }, "rating" : 9 }
279279

280-
To learn more about the ``geoWithin`` operator, see the :atlas:`
281-
geoWithin </atlas-search/geoWithin>` Atlas guide.
280+
To learn more about the ``geoWithin`` operator, see the :atlas:`geoWithin </atlas-search/geoWithin>`
281+
Atlas guide.
282282

283283
MoreLikeThis
284284
~~~~~~~~~~~~
@@ -304,8 +304,8 @@ The search returns the following documents:
304304
{ "_id" : 4, "make" : "Kiesel", "description" : "Quality guitars made only for custom orders.", "establishedYear" : 2015, "in-stock" : false, "rating" : null }
305305

306306

307-
To learn more about the ``moreLikeThis`` operator, see the :atlas:`
308-
moreLikeThis </atlas-search/morelikethis>` Atlas guide.
307+
To learn more about the ``moreLikeThis`` operator, see the :atlas:`moreLikeThis </atlas-search/morelikethis>`
308+
Atlas guide.
309309

310310
Near
311311
~~~~
@@ -337,8 +337,8 @@ The search returns the following documents:
337337
{ "_id" : 5, "make" : "Ibanez", "description" : "...", "establishedYear" : 1957, "in-stock" : true, "rating" : 7 }
338338

339339

340-
To learn more about the ``near`` operator, see the :atlas:`
341-
near </atlas-search/near>` Atlas guide.
340+
To learn more about the ``near`` operator, see the :atlas:`near </atlas-search/near>`
341+
Atlas guide.
342342

343343
Phrase
344344
~~~~~~
@@ -379,8 +379,8 @@ This search returns the following documents:
379379
{ "_id" : 4, "make" : "Kiesel", "description" : "Quality guitars made only for custom orders.", "establishedYear" : 2015, "in-stock" : false, "rating" : null }
380380
{ "_id" : 2, "make" : "Gibson", "description" : "Classic guitars known for their rich, full tones.", "establishedYear" : 1902, "in-stock" : true, "rating" : 8 }
381381

382-
To learn more about the ``phrase`` operator, see the :atlas:`
383-
phrase </atlas-search/phrase>` Atlas guide.
382+
To learn more about the ``phrase`` operator, see the :atlas:`phrase </atlas-search/phrase>`
383+
Atlas guide.
384384

385385
QueryString
386386
~~~~~~~~~~~
@@ -413,8 +413,8 @@ The search returns the following documents:
413413
{ "_id" : 3, "make" : "PRS", "description" : "High-end guitars known for their quality.", "establishedYear" : 1985, "in-stock" : true, "rating" : 9 }
414414
{ "_id" : 2, "make" : "Gibson", "description" : "Classic guitars known for their rich, full tones.", "establishedYear" : 1902, "in-stock" : true, "rating" : 8 }
415415

416-
To learn more about the ``queryString`` operator, see the :atlas:`
417-
queryString </atlas-search/queryString>` Atlas guide.
416+
To learn more about the ``queryString`` operator, see the :atlas:`queryString </atlas-search/queryString>`
417+
Atlas guide.
418418

419419
Range
420420
~~~~~
@@ -439,8 +439,8 @@ The search returns the following results:
439439
{ "_id" : 4, "make" : "Kiesel", "description" : "Quality guitars made only for custom orders.", "establishedYear" : 2015, "in-stock" : false, "rating" : null }
440440
{ "_id" : 6, "make" : "Strandberg", "description" : "Modern guitars known for their headless models.", "establishedYear" : 1982, "in-stock" : false, "rating" : null }
441441

442-
To learn more about the ``range`` operator, see the :atlas:`
443-
range </atlas-search/range>` Atlas guide.
442+
To learn more about the ``range`` operator, see the :atlas:`range </atlas-search/range>`
443+
Atlas guide.
444444

445445
Regex
446446
~~~~~
@@ -481,8 +481,8 @@ The search returns the following results:
481481
search results. To learn more, see :atlas:`regex Behavior
482482
</atlas-search/regex/#behavior>`.
483483

484-
To learn more about the ``regex`` operator, see the :atlas:`
485-
regex </atlas-search/regex>` Atlas guide.
484+
To learn more about the ``regex`` operator, see the :atlas:`regex </atlas-search/regex>`
485+
Atlas guide.
486486

487487
Span
488488
~~~~
@@ -516,8 +516,8 @@ Although the document with ``_id: 3`` contains the strings "guitars" and
516516
"quality", they are separated by more than one word, so the search omits this
517517
document from the results.
518518

519-
To learn more about the ``span`` operator, see the :atlas:`
520-
span </atlas-search/span>` Atlas guide.
519+
To learn more about the ``span`` operator, see the :atlas:`span </atlas-search/span>`
520+
Atlas guide.
521521

522522
Text
523523
~~~~
@@ -547,8 +547,8 @@ The search returns the following document:
547547
If your search string contains multiple terms, the method also looks for a match
548548
for each term in the string separately.
549549

550-
To learn more about the ``text`` operator, see the :atlas:`
551-
text </atlas-search/text>` Atlas guide.
550+
To learn more about the ``text`` operator, see the :atlas:`text </atlas-search/text>`
551+
Atlas guide.
552552

553553
Wildcard
554554
~~~~~~~~
@@ -604,5 +604,5 @@ The search returns the following document:
604604
search results. To learn more, see :atlas:`wildcard Behavior
605605
</atlas-search/wildcard/#behavior>`.
606606

607-
To learn more about the ``wildcard`` operator, see the :atlas:`
608-
wildcard </atlas-search/wildcard>` Atlas guide.
607+
To learn more about the ``wildcard`` operator, see the :atlas:`wildcard </atlas-search/wildcard>`
608+
Atlas guide.

0 commit comments

Comments
 (0)