Skip to content

Commit b4a1279

Browse files
authored
Update add_and_remove_assignee_responder.rb
Let's use only one i.
1 parent 3408ce4 commit b4a1279

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/responders/add_and_remove_assignee_responder.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def process_message(message)
1313
add_or_remove = @match_data[1].downcase
1414
user = @match_data[2]
1515

16-
iif ["add", "assign"].include?(add_or_remove)
16+
if ["add", "assign"].include?(add_or_remove)
1717
add user
1818
elsif add_or_remove == "remove"
1919
remove user

0 commit comments

Comments
 (0)