Skip to content

Commit

Permalink
Merge pull request #792 from riseshia/fix-typo
Browse files Browse the repository at this point in the history
Fix some typo
  • Loading branch information
urimaro authored Feb 22, 2024
2 parents 181866c + 89c1918 commit 6a4b5b6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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

0 comments on commit 6a4b5b6

Please sign in to comment.