Merge pull request #561 from maxscott/patch-1

Update elixir.md
This commit is contained in:
Rico Sta. Cruz 2018-07-04 20:33:27 +08:00 committed by GitHub
commit 382b9c7e95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -689,8 +689,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)
```