@@ -862,7 +862,7 @@ public static DiskTypeListOption filter(DiskTypeFilter filter) {
862862 }
863863
864864 /**
865- * Returns an option to specify the maximum number of disk types to be returned .
865+ * Returns an option to specify the maximum number of disk types returned per page .
866866 */
867867 public static DiskTypeListOption pageSize (long pageSize ) {
868868 return new DiskTypeListOption (ComputeRpc .Option .MAX_RESULTS , pageSize );
@@ -907,7 +907,7 @@ public static DiskTypeAggregatedListOption filter(DiskTypeFilter filter) {
907907 }
908908
909909 /**
910- * Returns an option to specify the maximum number of disk types to be returned .
910+ * Returns an option to specify the maximum number of disk types returned per page .
911911 */
912912 public static DiskTypeAggregatedListOption pageSize (long pageSize ) {
913913 return new DiskTypeAggregatedListOption (ComputeRpc .Option .MAX_RESULTS , pageSize );
@@ -955,7 +955,7 @@ private MachineTypeListOption(ComputeRpc.Option option, Object value) {
955955 }
956956
957957 /**
958- * Returns an option to specify a filter on the machine types being listed.
958+ * Returns an option to specify a filter to the machine types being listed.
959959 */
960960 public static MachineTypeListOption filter (MachineTypeFilter filter ) {
961961 return new MachineTypeListOption (ComputeRpc .Option .FILTER , filter .toPb ());
@@ -1000,7 +1000,7 @@ private MachineTypeAggregatedListOption(ComputeRpc.Option option, Object value)
10001000 }
10011001
10021002 /**
1003- * Returns an option to specify a filter on the machine types being listed.
1003+ * Returns an option to specify a filter to the machine types being listed.
10041004 */
10051005 public static MachineTypeAggregatedListOption filter (MachineTypeFilter filter ) {
10061006 return new MachineTypeAggregatedListOption (ComputeRpc .Option .FILTER , filter .toPb ());
@@ -1055,7 +1055,7 @@ private RegionListOption(ComputeRpc.Option option, Object value) {
10551055 }
10561056
10571057 /**
1058- * Returns an option to specify a filter on the regions being listed.
1058+ * Returns an option to specify a filter to the regions being listed.
10591059 */
10601060 public static RegionListOption filter (RegionFilter filter ) {
10611061 return new RegionListOption (ComputeRpc .Option .FILTER , filter .toPb ());
@@ -1122,7 +1122,7 @@ private ZoneListOption(ComputeRpc.Option option, Object value) {
11221122 }
11231123
11241124 /**
1125- * Returns an option to specify a filter on the zones being listed.
1125+ * Returns an option to specify a filter to the zones being listed.
11261126 */
11271127 public static ZoneListOption filter (ZoneFilter filter ) {
11281128 return new ZoneListOption (ComputeRpc .Option .FILTER , filter .toPb ());
@@ -1211,7 +1211,7 @@ private OperationListOption(ComputeRpc.Option option, Object value) {
12111211 }
12121212
12131213 /**
1214- * Returns an option to specify a filter on the operations being listed.
1214+ * Returns an option to specify a filter to the operations being listed.
12151215 */
12161216 public static OperationListOption filter (OperationFilter filter ) {
12171217 return new OperationListOption (ComputeRpc .Option .FILTER , filter .toPb ());
0 commit comments