Skip to content

Commit 289c92d

Browse files
committed
fix: remove newlines for proper rendering
1 parent abafa51 commit 289c92d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/source/pipelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,7 @@ Logging `result[0].generated_text` to the console gives:
185185
<details>
186186
<summary>Click to view the console output</summary>
187187
<pre>
188+
Here's a simple implementation of the quick sort algorithm in Python:
188189
```python
189190
def quick_sort(arr):
190191
if len(arr) <= 1:
@@ -205,7 +206,6 @@ print(sorted_arr)
205206
- **Partitioning**: The array is partitioned into three parts: elements less than the pivot (`left`), elements equal to the pivot (`middle`), and elements greater than the pivot (`right`). These partitions are then recursively sorted.
206207
- **Recursive Sorting**: The subarrays are sorted recursively using `quick_sort`.
207208
This approach ensures that each recursive call reduces the problem size by half until it reaches a base case.
208-
```
209209
</pre>
210210
</details>
211211

0 commit comments

Comments
 (0)