Skip to content

Commit cbd18c9

Browse files
committed
Attend to various CodeRabbit nitpicks.
1 parent 09b9ee5 commit cbd18c9

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

Diff for: docs/getting-started/quickstart.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Quickstart
33
sidebar_label: Quickstart
4-
description: Get started with CodeRabbit in less than 15 minutes
4+
description: See CodeRabbit in action, using a live GitHub repository.
55
sidebar_position: 1
66
---
77

@@ -56,21 +56,21 @@ Use your usual Git workflow to perform the following steps in the `coderabbit-te
5656

5757
1. Create a branch named `add-utils`.
5858

59-
1. In that new `add-utils` branch, create a new file called `simple_utils.py`, with the following content:
59+
1. In that new `add-utils` branch, create a new file called `simple_utils.py`, with the followingg content:
6060

61-
```
62-
# simple_utils.py - A tiny utility library
61+
```python
62+
# simple_utils.py - A tiny utility library
6363

64-
def reverse_string(text):
65-
"""Reverses the characters in a string."""
66-
return text[::-1]
64+
def reverse_string(text):
65+
"""Reverses the characters in a string."""
66+
return text[::-1]
6767

68-
def count_words(sentence):
69-
return len(sentence.split())
68+
def count_words(sentence):
69+
return len(sentence.split())
7070

71-
def celsius_to_fahrenheit(celsius):
72-
return (celsius * 9/5) + 32
73-
```
71+
def celsius_to_fahrenheit(celsius):
72+
return (celsius * 9/5) + 32
73+
```
7474

7575
1. Commit the added file to the `add-utils` branch. Use any text you want for the commit message.
7676

@@ -132,8 +132,8 @@ You are now ready to add CodeRabbit to other repositories that you own, and let
132132

133133
## What's next
134134

135-
- [Integrate CodeRabbit](http://localhost:3000/platforms/) with your repositories on GitHub, GitLab, Azure DevOps, or Bitbucket.
136-
- [Configure CodeRabbit](/getting-started/configure-coderabbit) beyond its default settings.
137-
- [Add custom review instructions](/guides/review-instructions).
138-
- [Get support for CodeRabbit](/getting-started/support).
139-
- [Learn more about how CodeRabbit works](/overview/why-coderabbit).
135+
* [Integrate CodeRabbit](http://localhost:3000/platforms/) with your repositories on GitHub, GitLab, Azure DevOps, or Bitbucket.
136+
* [Configure CodeRabbit](/getting-started/configure-coderabbit) beyond its default settings.
137+
* [Add custom review instructions](/guides/review-instructions).
138+
* [Get support for CodeRabbit](/getting-started/support).
139+
* [Learn more about how CodeRabbit works](/overview/why-coderabbit).

0 commit comments

Comments
 (0)