Update README.md

A very minor change of comma usage.
This commit is contained in:
Rifatul Islam Chayon 2019-07-30 13:39:14 +06:00 committed by GitHub
parent 1e5c0a7836
commit 56b3f79254
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ the [Active Model](activemodel/README.rdoc) module.
## Controller layer ## Controller layer
The _**Controller layer**_ is responsible for handling incoming HTTP requests and The _**Controller layer**_ is responsible for handling incoming HTTP requests and
providing a suitable response. Usually this means returning HTML, but Rails controllers providing a suitable response. Usually, this means returning HTML, but Rails controllers
can also generate XML, JSON, PDFs, mobile-specific views, and more. Controllers load and can also generate XML, JSON, PDFs, mobile-specific views, and more. Controllers load and
manipulate models, and render view templates in order to generate the appropriate HTTP response. manipulate models, and render view templates in order to generate the appropriate HTTP response.
In Rails, incoming requests are routed by Action Dispatch to an appropriate controller, and In Rails, incoming requests are routed by Action Dispatch to an appropriate controller, and
@ -37,7 +37,7 @@ are bundled together in [Action Pack](actionpack/README.rdoc).
The _**View layer**_ is composed of "templates" that are responsible for providing The _**View layer**_ is composed of "templates" that are responsible for providing
appropriate representations of your application's resources. Templates can appropriate representations of your application's resources. Templates can
come in a variety of formats, but most view templates are HTML with embedded come in a variety of formats, but most view templates are HTML with embedded
Ruby code (ERB files). Views are typically rendered to generate a controller response, Ruby code (ERB files). Views are typically rendered to generate a controller response
or to generate the body of an email. In Rails, View generation is handled by [Action View](actionview/README.rdoc). or to generate the body of an email. In Rails, View generation is handled by [Action View](actionview/README.rdoc).
## Frameworks and libraries ## Frameworks and libraries