Skip to content
This repository has been archived by the owner on Apr 27, 2021. It is now read-only.

Inconsistent spacing #80

Closed
kokjinsam opened this issue Sep 6, 2017 · 1 comment
Closed

Inconsistent spacing #80

kokjinsam opened this issue Sep 6, 2017 · 1 comment

Comments

@kokjinsam
Copy link

For example:

  @doc "Retrieves an account by UUID, or return `nil` if not found."
  def get_account_by_uuid(account_uuid) do
    .....
  end
<========= HERE
<========= HERE
  @doc "Retrieves an account by handle name, or return `nil` if not found."
  def get_account_by_handle_name(handle_name) when is_binary(handle_name) do
    .....
  end
<========= HERE
  @doc "Retrieves a user account by primary_email, or return `nil` if not found."
  def get_user_account_by_primary_email(primary_email)
      when is_binary(primary_email) do
    .....
  end

Please notice <========= HERE in the code snippet.

@lpil
Copy link
Owner

lpil commented Sep 6, 2017

This is not inconsistent spacing. Clauses are separated by 1 line, functions are separated by 2.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants