Skip to content

Commit 5b8c90b

Browse files
committed
Fix backticks in documentation
1 parent ab56e2b commit 5b8c90b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

index.html

+4-5
Original file line numberDiff line numberDiff line change
@@ -3220,10 +3220,9 @@ <h3 id='crosssell-example'>Usage example</h3>
32203220
]
32213221
}
32223222
</code></pre>
3223-
<p>`/v1/public/recommend/prod-prod/3?channel=2</p>
3223+
<p>/v1/public/recommend/prod-prod/3?channel=2</p>
32243224

3225-
<p>```
3226-
{
3225+
<pre><code>{
32273226
&quot;products&quot;: [
32283227
{
32293228
&quot;id&quot;: 2,
@@ -3238,8 +3237,8 @@ <h3 id='crosssell-example'>Usage example</h3>
32383237
&quot;score&quot;: 0
32393238
}
32403239
]
3241-
}</p>
3242-
3240+
}
3241+
</code></pre>
32433242

32443243

32453244
</section>

src/api/cross-sell.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export default class CrossSell {
5050
*
5151
* @example Request
5252
*
53-
* `/v1/public/recommend/prod-prod/3?channel=2
53+
* /v1/public/recommend/prod-prod/3?channel=2
5454
*
5555
* @example Response
5656
*
@@ -71,6 +71,7 @@ export default class CrossSell {
7171
* }
7272
* ]
7373
* }
74+
* ```
7475
*/
7576
crossSellRelated(productId, channelId) {
7677
const query = `?channel=${channelId}`;

0 commit comments

Comments
 (0)