From bccf2d190e4e9174e09b4891123b2e9c22fe310e Mon Sep 17 00:00:00 2001 From: Brad Hanks Date: Sat, 23 Dec 2023 02:10:23 -0700 Subject: [PATCH] Minor text formatting change (#1196) --- lib/plug.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/plug.ex b/lib/plug.ex index 55f60f40..4fd2da7a 100644 --- a/lib/plug.ex +++ b/lib/plug.ex @@ -81,7 +81,7 @@ defmodule Plug do If any plug halts, the connection won't invoke the remaining plugs. If the given connection was already halted, none of the plugs are invoked either. - While Plug.Builder is designed to operate at compile-time, the `run` function + While `Plug.Builder` is designed to operate at compile-time, the `run` function serves as a straightforward alternative for runtime executions. ## Examples