Skip to content

Commit 5014192

Browse files
author
Bruce Johnston
committed
[Azure Search] Rename 'See also' to 'Next steps' per PR feedback
1 parent 5935e0f commit 5014192

12 files changed

+12
-12
lines changed

articles/search/search-query-odata-collection-operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Not every feature of filter expressions is available inside the body of a lambda
8686

8787
For more details on these limitations as well as examples, see [Troubleshooting collection filters in Azure Search](search-query-troubleshoot-collection-filters.md). For more in-depth information on why these limitations exist, see [Understanding collection filters in Azure Search](search-query-understand-collection-filters.md).
8888

89-
## See also
89+
## Next steps
9090

9191
- [Filters in Azure Search](search-filters.md)
9292
- [OData expression language overview for Azure Search](query-odata-filter-orderby-syntax.md)

articles/search/search-query-odata-comparison-operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ Match documents for hotels where at least one room has type "Deluxe Room", where
148148

149149
Rooms/any(room: room/Type eq 'Deluxe Room')
150150

151-
## See also
151+
## Next steps
152152

153153
- [Filters in Azure Search](search-filters.md)
154154
- [OData expression language overview for Azure Search](query-odata-filter-orderby-syntax.md)

articles/search/search-query-odata-filter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ Find hotels where the terms "hotel" and "airport" are no more than five words ap
188188

189189
$filter=search.ismatch('"hotel airport"~5', 'Description', 'full', 'any') and not Rooms/any(room: room/SmokingAllowed)
190190

191-
## See also
191+
## Next steps
192192

193193
- [Filters in Azure Search](search-filters.md)
194194
- [OData expression language overview for Azure Search](query-odata-filter-orderby-syntax.md)

articles/search/search-query-odata-full-text-search-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Find documents where the terms "hotel" and "airport" are within 5 words from eac
112112

113113
search.ismatch('"hotel airport"~5', 'Description', 'full', 'any') and Rooms/any(room: not room/SmokingAllowed)
114114

115-
## See also
115+
## Next steps
116116

117117
- [Filters in Azure Search](search-filters.md)
118118
- [OData expression language overview for Azure Search](query-odata-filter-orderby-syntax.md)

articles/search/search-query-odata-geo-spatial-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Sort hotels in descending order by `search.score` and `rating`, and then in asce
112112

113113
search.score() desc,rating desc,geo.distance(location, geography'POINT(-122.131577 47.678581)') asc
114114

115-
## See also
115+
## Next steps
116116

117117
- [Filters in Azure Search](search-filters.md)
118118
- [OData expression language overview for Azure Search](query-odata-filter-orderby-syntax.md)

articles/search/search-query-odata-logical-operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Match documents for hotels in Vancouver, Canada where there is a deluxe room wit
101101

102102
Address/City eq 'Vancouver' and Address/Country eq 'Canada' and Rooms/any(room: room/Type eq 'Deluxe Room' and room/BaseRate lt 160)
103103

104-
## See also
104+
## Next steps
105105

106106
- [Filters in Azure Search](search-filters.md)
107107
- [OData expression language overview for Azure Search](query-odata-filter-orderby-syntax.md)

articles/search/search-query-odata-orderby.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Sort hotels in descending order by search.score and rating, and then in ascendin
7272

7373
$orderby=search.score() desc,Rating desc,geo.distance(Location, geography'POINT(-122.131577 47.678581)') asc
7474

75-
## See also
75+
## Next steps
7676

7777
- [How to work with search results in Azure Search](search-pagination-page-layout.md)
7878
- [OData expression language overview for Azure Search](query-odata-filter-orderby-syntax.md)

articles/search/search-query-odata-search-in-function.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Find all hotels without the tag 'motel' or 'cabin':
9898

9999
Tags/all(tag: not search.in(tag, 'motel, cabin'))
100100

101-
## See also
101+
## Next steps
102102

103103
- [Filters in Azure Search](search-filters.md)
104104
- [OData expression language overview for Azure Search](query-odata-filter-orderby-syntax.md)

articles/search/search-query-odata-search-score-function.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Sort hotels in descending order by `search.score` and `rating`, and then in asce
3434

3535
search.score() desc,rating desc,geo.distance(location, geography'POINT(-122.131577 47.678581)') asc
3636

37-
## See also
37+
## Next steps
3838

3939
- [OData expression language overview for Azure Search](query-odata-filter-orderby-syntax.md)
4040
- [OData expression syntax reference for Azure Search](search-query-odata-syntax-reference.md)

articles/search/search-query-odata-select.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ An example result might look like this:
102102
}
103103
```
104104

105-
## See also
105+
## Next steps
106106

107107
- [How to work with search results in Azure Search](search-pagination-page-layout.md)
108108
- [OData expression language overview for Azure Search](query-odata-filter-orderby-syntax.md)

0 commit comments

Comments
 (0)