summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdi Iyengar <aditya7iyengar@users.noreply.github.com>2018-03-28 04:45:17 -0400
committerJosé Valim <jose.valim@gmail.com>2018-03-28 10:45:17 +0200
commit8d47d0d2382ec71589d53405cdb431e3b103ccc3 (patch)
treea50d13db6e32e68d5fbbee217d01e4d136524ef3
parentedd56b47090a9c7f931ae879a0d50598099c799d (diff)
downloadelixir-8d47d0d2382ec71589d53405cdb431e3b103ccc3.tar.gz
Fix typo in formatter (#7504)
-rw-r--r--lib/elixir/lib/code/formatter.ex2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/elixir/lib/code/formatter.ex b/lib/elixir/lib/code/formatter.ex
index c1ee99e23..d426ddaf6 100644
--- a/lib/elixir/lib/code/formatter.ex
+++ b/lib/elixir/lib/code/formatter.ex
@@ -513,7 +513,7 @@ defmodule Code.Formatter do
defp quoted_to_algebra({:not, meta, [{:in, _, [left, right]} = arg]}, context, state) do
%{rename_deprecated_at: since} = state
- # TODO: Remove since check on Elixir v2.0 and the OP arrengement is removed.
+ # TODO: Remove since check on Elixir v2.0 and the OP arrangement is removed.
if meta[:operator] == :"not in" || (since && Version.match?(since, "~> 1.5")) do
binary_op_to_algebra(:in, "not in", meta, left, right, context, state)
else