From cc21b402a04d3860d9f547443d4a467349701671 Mon Sep 17 00:00:00 2001 From: Liam Date: Sat, 22 Jun 2024 18:16:14 -0400 Subject: [PATCH] Fix weird indentation --- lib/philomena/attribution.ex | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/philomena/attribution.ex b/lib/philomena/attribution.ex index 53fca736..94d6c35e 100644 --- a/lib/philomena/attribution.ex +++ b/lib/philomena/attribution.ex @@ -1,22 +1,22 @@ defprotocol Philomena.Attribution do @doc """ - Provides the "parent object" identifier for this object. This is so - that anonymous posts under the same topic id can return the same hash - for the same user. + Provides the "parent object" identifier for this object. This is so + that anonymous posts under the same topic id can return the same hash + for the same user. """ @spec object_identifier(struct()) :: String.t() def object_identifier(object) @doc """ - Provides the "best" user identifier for an object. Usually this will be - the user_id, but may also be the fingerprint or IP address if other - information is unavailable. + Provides the "best" user identifier for an object. Usually this will be + the user_id, but may also be the fingerprint or IP address if other + information is unavailable. """ @spec best_user_identifier(struct()) :: String.t() def best_user_identifier(object) @doc """ - Return whether this object is considered to be anonymous. + Return whether this object is considered to be anonymous. """ @spec anonymous?(struct()) :: true | false def anonymous?(object)