Skip to content

Commit c04243c

Browse files
committed
fix(clients): escape char in comments (generated)
algolia/api-clients-automation#3973 Co-authored-by: algolia-bot <[email protected]>
1 parent 0f80670 commit c04243c

9 files changed

+306
-306
lines changed

lib/algolia/api/abtesting_client.rb

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def add_ab_tests(add_ab_tests_request, request_options = {})
101101

102102
# This method allow you to send requests to the Algolia REST API.
103103

104-
# @param path [String] Path of the endpoint, anything after \&quot;/1\&quot; must be specified. (required)
104+
# @param path [String] Path of the endpoint, anything after \"/1\" must be specified. (required)
105105
# @param parameters [Hash<String, Object>] Query parameters to apply to the current query.
106106
# @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
107107
# @return [Http::Response] the response
@@ -133,7 +133,7 @@ def custom_delete_with_http_info(path, parameters = nil, request_options = {})
133133

134134
# This method allow you to send requests to the Algolia REST API.
135135

136-
# @param path [String] Path of the endpoint, anything after \&quot;/1\&quot; must be specified. (required)
136+
# @param path [String] Path of the endpoint, anything after \"/1\" must be specified. (required)
137137
# @param parameters [Hash<String, Object>] Query parameters to apply to the current query.
138138
# @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
139139
# @return [Object]
@@ -144,7 +144,7 @@ def custom_delete(path, parameters = nil, request_options = {})
144144

145145
# This method allow you to send requests to the Algolia REST API.
146146

147-
# @param path [String] Path of the endpoint, anything after \&quot;/1\&quot; must be specified. (required)
147+
# @param path [String] Path of the endpoint, anything after \"/1\" must be specified. (required)
148148
# @param parameters [Hash<String, Object>] Query parameters to apply to the current query.
149149
# @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
150150
# @return [Http::Response] the response
@@ -176,7 +176,7 @@ def custom_get_with_http_info(path, parameters = nil, request_options = {})
176176

177177
# This method allow you to send requests to the Algolia REST API.
178178

179-
# @param path [String] Path of the endpoint, anything after \&quot;/1\&quot; must be specified. (required)
179+
# @param path [String] Path of the endpoint, anything after \"/1\" must be specified. (required)
180180
# @param parameters [Hash<String, Object>] Query parameters to apply to the current query.
181181
# @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
182182
# @return [Object]
@@ -187,7 +187,7 @@ def custom_get(path, parameters = nil, request_options = {})
187187

188188
# This method allow you to send requests to the Algolia REST API.
189189

190-
# @param path [String] Path of the endpoint, anything after \&quot;/1\&quot; must be specified. (required)
190+
# @param path [String] Path of the endpoint, anything after \"/1\" must be specified. (required)
191191
# @param parameters [Hash<String, Object>] Query parameters to apply to the current query.
192192
# @param body [Object] Parameters to send with the custom request.
193193
# @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
@@ -220,7 +220,7 @@ def custom_post_with_http_info(path, parameters = nil, body = nil, request_optio
220220

221221
# This method allow you to send requests to the Algolia REST API.
222222

223-
# @param path [String] Path of the endpoint, anything after \&quot;/1\&quot; must be specified. (required)
223+
# @param path [String] Path of the endpoint, anything after \"/1\" must be specified. (required)
224224
# @param parameters [Hash<String, Object>] Query parameters to apply to the current query.
225225
# @param body [Object] Parameters to send with the custom request.
226226
# @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
@@ -232,7 +232,7 @@ def custom_post(path, parameters = nil, body = nil, request_options = {})
232232

233233
# This method allow you to send requests to the Algolia REST API.
234234

235-
# @param path [String] Path of the endpoint, anything after \&quot;/1\&quot; must be specified. (required)
235+
# @param path [String] Path of the endpoint, anything after \"/1\" must be specified. (required)
236236
# @param parameters [Hash<String, Object>] Query parameters to apply to the current query.
237237
# @param body [Object] Parameters to send with the custom request.
238238
# @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
@@ -265,7 +265,7 @@ def custom_put_with_http_info(path, parameters = nil, body = nil, request_option
265265

266266
# This method allow you to send requests to the Algolia REST API.
267267

268-
# @param path [String] Path of the endpoint, anything after \&quot;/1\&quot; must be specified. (required)
268+
# @param path [String] Path of the endpoint, anything after \"/1\" must be specified. (required)
269269
# @param parameters [Hash<String, Object>] Query parameters to apply to the current query.
270270
# @param body [Object] Parameters to send with the custom request.
271271
# @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
@@ -462,7 +462,7 @@ def schedule_ab_test(schedule_ab_tests_request, request_options = {})
462462
@api_client.deserialize(response.body, request_options[:debug_return_type] || "Abtesting::ScheduleABTestResponse")
463463
end
464464

465-
# Stops an A/B test by its ID. You can&#39;t restart stopped A/B tests.
465+
# Stops an A/B test by its ID. You can't restart stopped A/B tests.
466466
#
467467
# Required API Key ACLs:
468468
# - editSettings

0 commit comments

Comments
 (0)