Skip to content

Commit c346523

Browse files
committed
update comments
1 parent 76c5114 commit c346523

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

libraries/windows_updates.rb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,6 @@ def all
5959

6060
# returns all important updates
6161
def important
62-
# https://msdn.microsoft.com/en-us/library/ff357803(v=vs.85).aspx
63-
# e6cf1350-c01b-414d-a61f-263d14d133b4 -> Critical Updates
64-
# 0fa1201d-4330-4fa8-8ae9-b877473b6441 -> Security Updates
65-
# 28bc880e-0592-4cbf-8f95-c79b17911d5f -> Update Rollups
66-
6762
updates = fetchUpdates
6863
updates
6964
.select { |update|
@@ -106,6 +101,11 @@ def to_s
106101

107102
private
108103

104+
# @see: https://msdn.microsoft.com/en-us/library/ff357803(v=vs.85).aspx
105+
# e6cf1350-c01b-414d-a61f-263d14d133b4 -> Critical Updates
106+
# 0fa1201d-4330-4fa8-8ae9-b877473b6441 -> Security Updates
107+
# 28bc880e-0592-4cbf-8f95-c79b17911d5f -> Update Rollups
108+
# does not include recommended updates yet
109109
def isSecurityCategory(uuids)
110110
uuids.include?('0fa1201d-4330-4fa8-8ae9-b877473b6441') ||
111111
uuids.include?('28bc880e-0592-4cbf-8f95-c79b17911d5f') ||

0 commit comments

Comments
 (0)