Skip to content

Commit 7f462f6

Browse files
authored
Fixed type in the invalid GPS time error string (#86)
1 parent 7cbc0ca commit 7f462f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

swiftnav/src/time.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ impl fmt::Display for InvalidGpsTime {
8585
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
8686
match self {
8787
InvalidGpsTime::InvalidWN(wn) => write!(f, "Invalid Week Number: {}", wn),
88-
InvalidGpsTime::InvalidTOW(tow) => write!(f, "Invalid Time of Wee: {}", tow),
88+
InvalidGpsTime::InvalidTOW(tow) => write!(f, "Invalid Time of Week: {}", tow),
8989
}
9090
}
9191
}

0 commit comments

Comments
 (0)