From 09125c8ed30181a358ef80bf82aeeda340a3db52 Mon Sep 17 00:00:00 2001 From: Max Date: Sun, 10 Jun 2018 13:05:02 -0400 Subject: [PATCH] Update elixir.md I believe this was the intention, ~s[ ] seems to not do anything, but ~s| | seems to have the effect described. --- elixir.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/elixir.md b/elixir.md index 42738b331..ccaecea57 100644 --- a/elixir.md +++ b/elixir.md @@ -686,8 +686,8 @@ exp = ~r/hello/i ```elixir ~r/regexp/ ~w(list of strings) -~s[strings with #{interpolation} and \x20 escape codes] -~S[no interpolation and no escapes] +~s|strings with #{interpolation} and \x20 escape codes| +~S|no interpolation and no escapes| ~c(charlist) ```