From 0b32ebe1336281f7c3ee02383bbd25d8b5781b65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?U=C4=A3is=20Ozols?= Date: Sun, 10 May 2015 14:18:41 +0300 Subject: [PATCH] Don't see a reason why "Just" needs to start with a capital letter. --- DD_Plug.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DD_Plug.md b/DD_Plug.md index 5c5cf5e7..103107e2 100644 --- a/DD_Plug.md +++ b/DD_Plug.md @@ -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.