Skip to content

Commit 063ef48

Browse files
committed
Fix typo in cmd_notes
1 parent 5e997aa commit 063ef48

File tree

1 file changed

+1
-1
lines changed
  • lib/msf/ui/console/command_dispatcher

1 file changed

+1
-1
lines changed

lib/msf/ui/console/command_dispatcher/db.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -939,7 +939,7 @@ def cmd_notes(*args)
939939
end
940940
if search_term
941941
note_list.delete_if do |n|
942-
!!n.attribute_names.any? { |a| n[a.intern].to_s.match(search_term) }
942+
!n.attribute_names.any? { |a| n[a.intern].to_s.match(search_term) }
943943
end
944944
end
945945
# Now display them

0 commit comments

Comments
 (0)