From 6c9e39e028c09876138ac78ce10b861705ccd5c4 Mon Sep 17 00:00:00 2001 From: stetsonthree Date: Fri, 2 Nov 2018 10:34:06 -0400 Subject: [PATCH] Fixes 2 typos (#20794) In the opening David Heinemeier Hansson was incorrectly spelled. Also, in the same sentence "it's" was incorrectly used and has been corrected to "its". --- guide/english/ruby/ruby-on-rails/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/ruby/ruby-on-rails/index.md b/guide/english/ruby/ruby-on-rails/index.md index 51c734fffa..92b8af2385 100644 --- a/guide/english/ruby/ruby-on-rails/index.md +++ b/guide/english/ruby/ruby-on-rails/index.md @@ -3,7 +3,7 @@ title: Ruby on Rails --- # Ruby on Rails -[Ruby on Rails](http://rubyonrails.org/) is a server-side framework (gem) built on the Ruby language to make websites. Rails makes web development faster, easier and more fun. It includes everything you need to build fantastic applications and has a big community. Rails was created by David Heinemeir Hansson and is currently on it's 5th version. Rails emphasizes the use of other well-known software engineering patterns and paradigms, including [convention over configuration (CoC)](https://en.wikipedia.org/wiki/Convention_over_configuration), [don't repeat yourself (DRY)](https://en.wikipedia.org/wiki/Don%27t_repeat_yourself), and the active record pattern. Rails is a [model–view–controller (MVC)](https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller) framework, providing default structures for a database, a web service, and web pages. Lately, Rails has integrated an API module to make the creation of web-services faster and easier. +[Ruby on Rails](http://rubyonrails.org/) is a server-side framework (gem) built on the Ruby language to make websites. Rails makes web development faster, easier and more fun. It includes everything you need to build fantastic applications and has a big community. Rails was created by David Heinemeier Hansson and is currently on its 5th version. Rails emphasizes the use of other well-known software engineering patterns and paradigms, including [convention over configuration (CoC)](https://en.wikipedia.org/wiki/Convention_over_configuration), [don't repeat yourself (DRY)](https://en.wikipedia.org/wiki/Don%27t_repeat_yourself), and the active record pattern. Rails is a [model–view–controller (MVC)](https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller) framework, providing default structures for a database, a web service, and web pages. Lately, Rails has integrated an API module to make the creation of web-services faster and easier. ## Installing Rails Rails is downloaded in the same way as any other Ruby gem: with the `gem install` command. Before we download it, we'll need to download Ruby. Afterwards we're only 3 words away from starting with Ruby on Rails: