Skip to content

Commit

Permalink
Merge pull request phoenixframework#226 from ugisozols/patch-1
Browse files Browse the repository at this point in the history
Don't see a reason why "Just" needs to start with a capital letter
  • Loading branch information
lancehalvorsen committed May 10, 2015
2 parents 09ff66c + 0b32ebe commit fc706a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DD_Plug.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Plug lives at the heart of Phoenix's HTTP layer, and Phoenix puts Plug front and center. We interact with plugs at every step of the connection lifecycle, and the core Phoenix components like Endpoints, Routers, and Controllers are all Just Plugs internally. Let's jump in and find out just what makes Plug so special.
Plug lives at the heart of Phoenix's HTTP layer, and Phoenix puts Plug front and center. We interact with plugs at every step of the connection lifecycle, and the core Phoenix components like Endpoints, Routers, and Controllers are all just Plugs internally. Let's jump in and find out just what makes Plug so special.

[Plug](https://github.com/elixir-lang/plug) is a specification for composable modules in between web applications. It is also an abstraction layer for connection adapters of different web servers. The basic idea of Plug is to unify the concept of a "connection" that we operate on. This differs from other HTTP middleware layers such as Rack, where the request and response are separated in the middleware stack.

Expand Down

0 comments on commit fc706a1

Please sign in to comment.