aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-03-05 09:18:41 -0800
committerVijay Dev <vijaydev.cse@gmail.com>2012-03-05 09:18:41 -0800
commitf02fa166ba247234b75a841d14450941007d3d6a (patch)
treee842f8243d703a8504ecb808b469421b0e6ac0d6 /railties/guides/source
parentc0a7999115e52272616b8375921119adf5835090 (diff)
parente2048583c1d21399efa1cabb80bb332b313a1023 (diff)
downloadrails-f02fa166ba247234b75a841d14450941007d3d6a.tar.gz
rails-f02fa166ba247234b75a841d14450941007d3d6a.tar.bz2
rails-f02fa166ba247234b75a841d14450941007d3d6a.zip
Merge pull request #5281 from filipeamoreira/patch-1
Small typo fix
Diffstat (limited to 'railties/guides/source')
-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 6a7f8ecabe..d51fcb2d58 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.