Skip to content

Commit

Permalink
Update project tagline to be more clear (phoenixframework#3290)
Browse files Browse the repository at this point in the history
  • Loading branch information
GRardB authored and chrismccord committed Mar 13, 2019
1 parent 7a7b59a commit fcc5a19
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![phoenix logo](https://raw.githubusercontent.com/phoenixframework/phoenix/master/priv/static/phoenix.png)
> ### Productive. Reliable. Fast.
> A productive web framework that does not compromise speed and maintainability.
> A productive web framework that does not compromise speed or maintainability.
[![Build Status](https://api.travis-ci.org/phoenixframework/phoenix.svg?branch=master)](https://travis-ci.org/phoenixframework/phoenix)
[![Inline docs](http://inch-ci.org/github/phoenixframework/phoenix.svg)](http://inch-ci.org/github/phoenixframework/phoenix)
Expand Down
4 changes: 2 additions & 2 deletions guides/views.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Let's open up the `lib/hello_web/templates/page/index.html.eex` and locate this
```html
<section class="phx-hero">
<h1><%= gettext "Welcome to %{name}!", name: "Phoenix" %></h1>
<p>A productive web framework that<br/>does not compromise speed and maintainability.</p>
<p>A productive web framework that<br/>does not compromise speed or maintainability.</p>
</section>
```

Expand All @@ -84,7 +84,7 @@ Then let's add a line with a link back to the same page. (The objective is to se
```html
<section class="phx-hero">
<h1><%= gettext "Welcome to %{name}!", name: "Phoenix" %></h1>
<p>A productive web framework that<br/>does not compromise speed and maintainability.</p>
<p>A productive web framework that<br/>does not compromise speed or maintainability.</p>
<p><a href="<%= Routes.page_path(@conn, :index) %>">Link back to this page</a></p>
</section>
```
Expand Down
2 changes: 1 addition & 1 deletion installer/templates/phx_web/templates/page/index.html.eex
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<section class="phx-hero">
<h1><%%= gettext "Welcome to %{name}!", name: "Phoenix" %></h1>
<p>A productive web framework that<br/>does not compromise speed and maintainability.</p>
<p>A productive web framework that<br/>does not compromise speed or maintainability.</p>
</section>

<section class="row">
Expand Down
2 changes: 1 addition & 1 deletion lib/mix/tasks/phx.ex
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ defmodule Mix.Tasks.Phx do
Application.ensure_all_started(:phoenix)
Mix.shell.info "Phoenix v#{Application.spec(:phoenix, :vsn)}"
Mix.shell.info "Productive. Reliable. Fast."
Mix.shell.info "A productive web framework that does not compromise speed and maintainability."
Mix.shell.info "A productive web framework that does not compromise speed or maintainability."
Mix.shell.info "\nAvailable tasks:\n"
Mix.Tasks.Help.run(["--search", "phx."])
end
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ defmodule Phoenix.MixProject do
homepage_url: "http://www.phoenixframework.org",
description: """
Productive. Reliable. Fast. A productive web framework that
does not compromise speed and maintainability.
does not compromise speed or maintainability.
"""
]
end
Expand Down

0 comments on commit fcc5a19

Please sign in to comment.