### Example for arrow #### How it is ``` erlang some_method() -> {}. ``` #### How it should be ``` erlang some_method() -> {}. ``` ### Example for dot (and arrow) #### How it is ``` erlang some_method() -> {}. some_other_method() -> {}. ``` #### How it should be ``` erlang some_method() -> {}. some_other_method() -> {}. ```
Example for arrow
How it is
How it should be
Example for dot (and arrow)
How it is
How it should be