Skip to content

Commit 234a660

Browse files
Docs: Update CONTRIBUTING.md style guide and tooling
- Add Space column to complexity table example - Replace pip with uv for dependency installation Co-Authored-By: Amp <amp@ampcode.com>
1 parent b98603d commit 234a660

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

CONTRIBUTING.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ docs/
4848
### Complexity Table Format
4949

5050
```markdown
51-
| Operation | Time | Notes |
52-
|-----------|------|-------|
53-
| `method()` | O(n) | Brief description |
51+
| Operation | Time | Space | Notes |
52+
|-----------|------|-------|-------|
53+
| `method()` | O(n) | O(1) | Brief description |
5454
```
5555

5656
### Code Examples
@@ -103,11 +103,14 @@ For important notes:
103103
## Building Locally
104104

105105
```bash
106+
# Install uv (if not already installed)
107+
curl -LsSf https://astral.sh/uv/install.sh | sh
108+
106109
# Install dependencies
107-
pip install -r requirements.txt
110+
uv sync
108111

109112
# Serve documentation
110-
mkdocs serve
113+
make serve
111114

112115
# Visit http://localhost:8000
113116
```

0 commit comments

Comments
 (0)