Skip to content

Commit fbee656

Browse files
committed
Fix special characters in Javadoc
1 parent 7c906c2 commit fbee656

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

src/main/java/com/recombee/api_client/api_requests/AddSearchSynonym.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
/**
1515
* Adds a new synonym for the [Search items](https://docs.recombee.com/api.html#search-items).
1616
* When the `term` is used in the search query, the `synonym` is also used for the full-text search.
17-
* Unless `oneWay=true`, it works also in the opposite way (`synonym` -> `term`).
17+
* Unless `oneWay=true`, it works also in the opposite way (`synonym` -> `term`).
1818
* An example of a synonym can be `science fiction` for the term `sci-fi`.
1919
*/
2020
public class AddSearchSynonym extends Request {
@@ -28,7 +28,7 @@ public class AddSearchSynonym extends Request {
2828
*/
2929
protected String synonym;
3030
/**
31-
* If set to `true`, only `term` -> `synonym` is considered. If set to `false`, also `synonym` -> `term` works.
31+
* If set to `true`, only `term` -> `synonym` is considered. If set to `false`, also `synonym` -> `term` works.
3232
* Default: `false`.
3333
*/
3434
protected Boolean oneWay;
@@ -45,7 +45,7 @@ public AddSearchSynonym (String term,String synonym) {
4545
}
4646

4747
/**
48-
* @param oneWay If set to `true`, only `term` -> `synonym` is considered. If set to `false`, also `synonym` -> `term` works.
48+
* @param oneWay If set to `true`, only `term` -> `synonym` is considered. If set to `false`, also `synonym` -> `term` works.
4949
* Default: `false`.
5050
*/
5151
public AddSearchSynonym setOneWay(boolean oneWay) {

src/main/java/com/recombee/api_client/api_requests/ListItems.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public class ListItems extends Request {
4343
* {
4444
* "itemId": "mixer-42",
4545
* "description": "Stainless Steel Mixer",
46-
* "categories": ["Home & Kitchen"],
46+
* "categories": ["Home & Kitchen"],
4747
* "price": 39,
4848
* "url": "myshop.com/mixer-42"
4949
* }
@@ -117,7 +117,7 @@ public ListItems setOffset(long offset) {
117117
* {
118118
* "itemId": "mixer-42",
119119
* "description": "Stainless Steel Mixer",
120-
* "categories": ["Home & Kitchen"],
120+
* "categories": ["Home & Kitchen"],
121121
* "price": 39,
122122
* "url": "myshop.com/mixer-42"
123123
* }

src/main/java/com/recombee/api_client/api_requests/RecommendItemsToItem.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public class RecommendItemsToItem extends Request {
7676
* "id": "mixer-42",
7777
* "values": {
7878
* "description": "Stainless Steel Mixer",
79-
* "categories": ["Home & Kitchen"],
79+
* "categories": ["Home & Kitchen"],
8080
* "price": 39,
8181
* "url": "myshop.com/mixer-42"
8282
* }
@@ -225,7 +225,7 @@ public RecommendItemsToItem setCascadeCreate(boolean cascadeCreate) {
225225
* "id": "mixer-42",
226226
* "values": {
227227
* "description": "Stainless Steel Mixer",
228-
* "categories": ["Home & Kitchen"],
228+
* "categories": ["Home & Kitchen"],
229229
* "price": 39,
230230
* "url": "myshop.com/mixer-42"
231231
* }

src/main/java/com/recombee/api_client/api_requests/RecommendItemsToUser.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public class RecommendItemsToUser extends Request {
6161
* "id": "mixer-42",
6262
* "values": {
6363
* "description": "Stainless Steel Mixer",
64-
* "categories": ["Home & Kitchen"],
64+
* "categories": ["Home & Kitchen"],
6565
* "price": 39,
6666
* "url": "myshop.com/mixer-42"
6767
* }
@@ -192,7 +192,7 @@ public RecommendItemsToUser setCascadeCreate(boolean cascadeCreate) {
192192
* "id": "mixer-42",
193193
* "values": {
194194
* "description": "Stainless Steel Mixer",
195-
* "categories": ["Home & Kitchen"],
195+
* "categories": ["Home & Kitchen"],
196196
* "price": 39,
197197
* "url": "myshop.com/mixer-42"
198198
* }

src/main/java/com/recombee/api_client/api_requests/SearchItems.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public class SearchItems extends Request {
6666
* "id": "mixer-42",
6767
* "values": {
6868
* "description": "Stainless Steel Mixer",
69-
* "categories": ["Home & Kitchen"],
69+
* "categories": ["Home & Kitchen"],
7070
* "price": 39,
7171
* "url": "myshop.com/mixer-42"
7272
* }
@@ -183,7 +183,7 @@ public SearchItems setCascadeCreate(boolean cascadeCreate) {
183183
* "id": "mixer-42",
184184
* "values": {
185185
* "description": "Stainless Steel Mixer",
186-
* "categories": ["Home & Kitchen"],
186+
* "categories": ["Home & Kitchen"],
187187
* "price": 39,
188188
* "url": "myshop.com/mixer-42"
189189
* }

src/main/java/com/recombee/api_client/api_requests/UpdateMoreItems.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* Example: *Setting all the items that are older than a week as unavailable*
1717
* ```
1818
* {
19-
* "filter": "'releaseDate' < now() - 7*24*3600",
19+
* "filter": "'releaseDate' &amp;lt; now() - 7*24*3600",
2020
* "changes": {"available": false}
2121
* }
2222
* ```

src/main/java/com/recombee/api_client/bindings/SearchSynonym.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class SearchSynonym extends RecombeeBinding {
2323
*/
2424
protected String synonym;
2525
/**
26-
* If set to `true`, only `term` -> `synonym` is considered. I set to `false`, also `synonym` -> `term` works.
26+
* If set to `true`, only `term` -&amp;gt; `synonym` is considered. I set to `false`, also `synonym` -&amp;gt; `term` works.
2727
*/
2828
protected Boolean oneWay;
2929

0 commit comments

Comments
 (0)