@@ -74,15 +74,15 @@ impl Default for TimeTriggerInterval {
74
74
75
75
#[ derive( Debug , Error ) ]
76
76
enum TimeTrigerIntervalError {
77
- #[ error( "The 'Seconds' value specified as a time trigger is out of bounds, ensure it fits within an i64: : '{0:?}'" ) ]
77
+ #[ error( "The 'Seconds' time trigger interval value is out of bounds, ensure it fits within an i64: : '{0:?}'" ) ]
78
78
Second ( TimeTriggerInterval ) ,
79
- #[ error( "The 'Minutes' value specified as a time trigger is out of bounds, ensure it fits within an i64: : '{0:?}'" ) ]
79
+ #[ error( "The 'Minutes' time trigger interval value is out of bounds, ensure it fits within an i64: : '{0:?}'" ) ]
80
80
Minute ( TimeTriggerInterval ) ,
81
- #[ error( "The 'Hours' value specified as a time trigger is out of bounds, ensure it fits within an i64: : '{0:?}'" ) ]
81
+ #[ error( "The 'Hours' time trigger interval value is out of bounds, ensure it fits within an i64: : '{0:?}'" ) ]
82
82
Hour ( TimeTriggerInterval ) ,
83
- #[ error( "The 'Days' value specified as a time trigger is out of bounds, ensure it fits within an i64: : '{0:?}'" ) ]
83
+ #[ error( "The 'Days' time trigger interval value is out of bounds, ensure it fits within an i64: : '{0:?}'" ) ]
84
84
Day ( TimeTriggerInterval ) ,
85
- #[ error( "The 'Weeks' value specified as a time trigger is out of bounds, ensure it fits within an i64: : '{0:?}'" ) ]
85
+ #[ error( "The 'Weeks' time trigger interval value is out of bounds, ensure it fits within an i64: : '{0:?}'" ) ]
86
86
Week ( TimeTriggerInterval ) ,
87
87
}
88
88
0 commit comments