Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some typo #792

Merged
merged 2 commits into from
Feb 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _pages/app.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ mkdir projects
{% endhighlight %}

<div>
<code>projects</code> ディレクトリが作られたことを確認してみましょう。ディレクトリに含まれるものを一覧で表示する <code>ls</code> というコマンドがあります。このコマンドを実行し、<code>projects</code> が表示されることを確認してください。ここで、今いるディレクトリを <code>projects</code> に変更するため、次のコマンドを実行します:</p>
<p><code>projects</code> ディレクトリが作られたことを確認してみましょう。ディレクトリに含まれるものを一覧で表示する <code>ls</code> というコマンドがあります。このコマンドを実行し、<code>projects</code> が表示されることを確認してください。ここで、今いるディレクトリを <code>projects</code> に変更するため、次のコマンドを実行します:</p>
</div>

{% highlight sh %}
Expand Down
8 changes: 4 additions & 4 deletions _pages/heroku.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,20 +145,20 @@ Heroku のアプリを作りましょう。
例えば、アプリの名前を"my-first-app"と決めた場合、ターミナルで次のコマンドを実行してください。 :

{% highlight sh %}
heroku create your-app-name -t railsgirls-japan
heroku create my-first-app -t railsgirls-japan
{% endhighlight %}

次のようなものが見られます。 :

{% highlight sh %}
Creating ⬢ your-app-name... done
Creating ⬢ my-first-app... done
http://my-first-app.herokuapp.com/ | https://git.heroku.com/my-first-app.git
{% endhighlight %}

もし、決めたアプリの名前が既に使われていたら、以下のようなメッセージが表示されます。 :
{% highlight sh %}
Creating ⬢ your-app-name... !
▸ Name your-app-name is already taken
Creating ⬢ my-first-app... !
▸ Name my-first-app is already taken
{% endhighlight sh %}

この場合は、もう一度アプリの名前を考えてなおしてみてください。
Expand Down
Loading