aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFilipe Moreira <famoreira@gmail.com>2012-03-05 16:28:11 +0100
committerFilipe Moreira <famoreira@gmail.com>2012-03-05 16:28:11 +0100
commite2048583c1d21399efa1cabb80bb332b313a1023 (patch)
tree6fe62762953d792d0c8d36cc31e6dedc61df7734
parentefd557a60cd976ac17be9e238111a551599caeb5 (diff)
downloadrails-e2048583c1d21399efa1cabb80bb332b313a1023.tar.gz
rails-e2048583c1d21399efa1cabb80bb332b313a1023.tar.bz2
rails-e2048583c1d21399efa1cabb80bb332b313a1023.zip
Small typo fix
-rw-r--r--railties/guides/source/api_app.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/api_app.textile b/railties/guides/source/api_app.textile
index 622e049da5..69e6592aed 100644
--- a/railties/guides/source/api_app.textile
+++ b/railties/guides/source/api_app.textile
@@ -27,7 +27,7 @@ This guide covers building a Rails application that serves JSON resources to an
h3. Why use Rails for JSON APIs?
-The first question a lot of people have when thinking about building a JSON API using Rails is: "isn't using Rails to spit out some JSON overkill? Shouldn't I just use something like Siantra?"
+The first question a lot of people have when thinking about building a JSON API using Rails is: "isn't using Rails to spit out some JSON overkill? Shouldn't I just use something like Sinatra?"
For very simple APIs, this may be true. However, even in very HTML-heavy applications, most of an application's logic is actually outside of the view layer.