Skip to content

Commit

Permalink
Remove uneeded blank line
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Oct 31, 2024
1 parent 8ad110a commit 4a97256
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/elixir/pages/references/naming-conventions.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ When thinking about failure cases, we are often thinking about semantic errors r
def chardata_to_string(string) when is_binary(string)
def chardata_to_string(list) when is_list(list)


More examples of paired functions: `Base.decode16/2` and `Base.decode16!/2`, `File.cwd/0` and `File.cwd!/0`. In some situations, you may have bang functions without a non-bang counterpart. They also imply the possibility of errors, such as: `Protocol.assert_protocol!/1` and `PartitionSupervisor.resize!/2`. This can be useful if you foresee the possibility of adding a non-raising variant in the future.

## Trailing question mark (`foo?`)
Expand Down

0 comments on commit 4a97256

Please sign in to comment.