Doco correction

This commit is contained in:
huntc 2022-02-04 15:55:04 +11:00
parent 1af6b23f97
commit 25be00878c

View File

@ -459,9 +459,9 @@ pub enum SequenceMode {
/// Run sequence n Times total. /// Run sequence n Times total.
/// 1 = Run sequence 0 once /// 1 = Run sequence 0 once
/// 2 = Run sequence 0 and then sequence 1 /// 2 = Run sequence 0 and then sequence 1
/// 3 to 4 = Run sequence 0, sequence 1, sequence 0 and then sequence 1 /// 3 = Run sequence 1, sequence 0, sequence 1 and then sequence 0
/// 5 to 6 = Run sequence 0, sequence 1, sequence 0, sequence 1, sequence 0 and then sequence 1 /// 4 = Run sequence 0, sequence 1, sequence 0 and then sequence 1
/// i.e the when >= 2 the loop count is determined by dividing by 2 and rounding up /// ...and so on.
Times(u16), Times(u16),
/// Repeat until `stop` is called. /// Repeat until `stop` is called.
Infinite, Infinite,