Fix Whitespace

Christopher Vollick created

I'm going to make changes to this file at some point, but while I was in
here I noticed the whitespace was a bit weird.

So this change is only whitespace, no logic.

Change summary

lib/admin_actions/number_change.rb | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)

Detailed changes

lib/admin_actions/number_change.rb 🔗

@@ -40,7 +40,7 @@ class AdminAction
 
 		NilKey = Struct.new(:key) {
 			def to_s
-			 "Expected a key with a value, but #{key} has no value."
+				"Expected a key with a value, but #{key} has no value."
 			end
 		}
 
@@ -73,8 +73,8 @@ class AdminAction
 
 		def to_reverse
 			with(
-			 old_tel: new_tel,
-			 new_tel: old_tel
+				old_tel: new_tel,
+				new_tel: old_tel
 			)
 		end
 
@@ -85,7 +85,7 @@ class AdminAction
 	protected
 
 		def check_noop
-		 EMPromise.reject(NoOp.new) if new_tel == old_tel
+			EMPromise.reject(NoOp.new) if new_tel == old_tel
 		end
 
 		def check_exist