1 ファイル変更 +5 -5

この更新の概要

setupドキュメント内のコードブロックにおける属性指定の重複が修正されました。bashやpowershellなどの実行コマンド例において、冗長だったthemeプロパティの記述が整理されています。この変更はドキュメントの内部的なマークアップの最適化を目的としたもので、記載されているコマンド内容自体に変更はありません。表示上の不備を解消し、メンテナンス性を向上させるための軽微な修正です。

setup +5 -5

各プラットフォーム向けインストールコマンドのコードブロックにおいて、重複して定義されていたtheme属性を削除し、記述を簡略化しています。

@@ -38,19 +38,19 @@ To install Claude Code, use one of the following methods:
**macOS, Linux, WSL:**
```bash theme={null} theme={null}
```bash theme={null}
curl -fsSL https://claude.ai/install.sh | bash
```
**Windows PowerShell:**
```powershell theme={null} theme={null}
```powershell theme={null}
irm https://claude.ai/install.ps1 | iex
```
**Windows CMD:**
```batch theme={null} theme={null}
```batch theme={null}
curl -fsSL https://claude.ai/install.cmd -o install.cmd && install.cmd && del install.cmd
```
@@ -60,7 +60,7 @@ If you see `The token '&&' is not a valid statement separator`, you're in PowerS
Native installations automatically update in the background to keep you on the latest version.
```bash theme={null} theme={null}
```bash theme={null}
brew install --cask claude-code
```
@@ -68,7 +68,7 @@ Homebrew offers two casks. `claude-code` tracks the stable release channel, whic
Homebrew installations do not auto-update. Run `brew upgrade claude-code` or `brew upgrade claude-code@latest`, depending on which cask you installed, to get the latest features and security fixes.
```powershell theme={null} theme={null}
```powershell theme={null}
winget install Anthropic.ClaudeCode
```