diff --git a/README.ja.md b/README.ja.md index 02323c3ee1..44f564bc7a 100644 --- a/README.ja.md +++ b/README.ja.md @@ -49,7 +49,7 @@ Richは追加の設定を行わずとも、[Jupyter notebooks](https://jupyter.o python -m pip install rich ``` -以下のコマンドを実行して、ターミナルでリッチの出力をテストできます: +以下のコマンドを実行して、ターミナルでRichの出力をテストできます: ```sh python -m rich @@ -57,7 +57,7 @@ python -m rich ## Richのprint関数 -簡単にリッチな出力をアプリケーションに追加するには、Pythonの組み込み関数と同じ名前を持つ [rich print](https://rich.readthedocs.io/en/latest/introduction.html#quick-start) メソッドをインポートすることで実現できます。こちらを試してみてください: +簡単にRichな出力をアプリケーションに追加するには、Pythonの組み込み関数と同じ名前を持つ [rich print](https://rich.readthedocs.io/en/latest/introduction.html#quick-start) メソッドをインポートすることで実現できます。こちらを試してみてください: ```python from rich import print @@ -89,7 +89,7 @@ RichにはPythonオブジェクトやクラス、インスタンス、組み込 ## Consoleの使い方 -リッチなターミナルコンテンツをより制御していくには、[Console](https://rich.readthedocs.io/en/latest/reference/console.html#rich.console.Console) オブジェクトをインポートして構築していきます。 +Richなターミナルコンテンツをより制御していくには、[Console](https://rich.readthedocs.io/en/latest/reference/console.html#rich.console.Console) オブジェクトをインポートして構築していきます。 ```python