You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/elixir/pages/getting-started/sigils.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -235,6 +235,6 @@ iex> ~i(42)n
235
235
-42
236
236
```
237
237
238
-
Custom sigils may be either a single lowercase character or several uppercase characters.
238
+
Custom sigils may be either a single lowercase character, or an uppercase character followed by more uppercase characters and digits.
239
239
240
240
Sigils can also be used to do compile-time work with the help of macros. For example, regular expressions in Elixir are compiled into an efficient representation during compilation of the source code, therefore skipping this step at runtime. If you're interested in the subject, you can learn more about macros and check out how sigils are implemented in the `Kernel` module (where the `sigil_*` functions are defined).
0 commit comments