Skip to content

Commit 17810c8

Browse files
Copilotmnriem
andauthored
fix: capitalize docstring and use touch instead of colon redirect
Co-authored-by: mnriem <15701806+mnriem@users.noreply.github.com> Agent-Logs-Url: https://github.com/github/spec-kit/sessions/008835a0-7778-40bb-bdb2-4182b22be315
1 parent 5e49ec6 commit 17810c8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

templates/commands/specify.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Given that feature description, do this:
8686
- Ensure the directory and spec file exist:
8787
- Bash:
8888
- `mkdir -p "$FEATURE_DIR"`
89-
- `: > "$SPEC_FILE"`
89+
- `touch "$SPEC_FILE"`
9090
- PowerShell:
9191
- `New-Item -ItemType Directory -Path $env:FEATURE_DIR -Force | Out-Null`
9292
- `New-Item -ItemType File -Path $env:SPEC_FILE -Force | Out-Null`

tests/test_branch_numbering.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ class TestGitExtensionAutoInstall:
9393
"""Tests for bundled git extension auto-install during specify init."""
9494

9595
def test_git_extension_installed_during_init(self, tmp_path: Path, monkeypatch):
96-
"""verify that `specify init` auto-installs the bundled git extension."""
96+
"""Verify that `specify init` auto-installs the bundled git extension."""
9797
from typer.testing import CliRunner
9898
from specify_cli import app
9999

0 commit comments

Comments
 (0)