aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Moss <me@jonathanmoss.me>2017-04-10 11:05:05 -0400
committerJon Moss <me@jonathanmoss.me>2017-04-10 11:05:05 -0400
commitc134a17b3d740ab1578cdd8da8aba3909910feb2 (patch)
treea08f746a52061082ecb87d3692884b9570833951
parent374dca2d66d474ba3434bd67e9a20e4388b2a83e (diff)
downloadrails-c134a17b3d740ab1578cdd8da8aba3909910feb2.tar.gz
rails-c134a17b3d740ab1578cdd8da8aba3909910feb2.tar.bz2
rails-c134a17b3d740ab1578cdd8da8aba3909910feb2.zip
Remove link to rack.github.io
We mention the "resources" section of the guide in the next paragraph, and the link is listed there. IMHO we shouldn't list it twice. [ci skip]
-rw-r--r--guides/source/rails_on_rack.md2
1 files changed, 0 insertions, 2 deletions
diff --git a/guides/source/rails_on_rack.md b/guides/source/rails_on_rack.md
index ed9c4bb72a..f25b185fb5 100644
--- a/guides/source/rails_on_rack.md
+++ b/guides/source/rails_on_rack.md
@@ -20,8 +20,6 @@ Introduction to Rack
Rack provides a minimal, modular and adaptable interface for developing web applications in Ruby. By wrapping HTTP requests and responses in the simplest way possible, it unifies and distills the API for web servers, web frameworks, and software in between (the so-called middleware) into a single method call.
-* [Rack API Documentation](http://rack.github.io/)
-
Explaining how Rack works is not really in the scope of this guide. In case you
are not familiar with Rack's basics, you should check out the [Resources](#resources)
section below.