Skip to content

Commit

Permalink
Indent examples with 4 spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
seancribbs committed Jul 31, 2018
1 parent ed449ed commit a022d92
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/credo/check/warning/unsafe_to_atom.ex
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ defmodule Credo.Check.Warning.UnsafeToAtom do
Creating an atom from a string or charlist should be done by using
String.to_existing_atom(string)
String.to_existing_atom(string)
or
List.to_existing_atom(charlist)
List.to_existing_atom(charlist)
Module aliases should be constructed using
Module.safe_concat(prefix, suffix)
Module.safe_concat(prefix, suffix)
or
Module.safe_concat([prefix, infix, suffix])
Module.safe_concat([prefix, infix, suffix])
"""

Expand Down

0 comments on commit a022d92

Please sign in to comment.