diff options
-rw-r--r-- | convert.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/convert.go b/convert.go index 2264946..a3ff44e 100644 --- a/convert.go +++ b/convert.go @@ -222,7 +222,7 @@ func parseLineTwo(SplitTLE []string) (LineTwo, error) { // Parse the RevolutionNumberAtEpoch RevolutionNumberAtEpoch, err := strconv.Atoi(SplitTLE[2][63:68]) if err != nil { - return LineTwo{}, fmt.Errorf("%s: %#v\n%v", "Could not parse the MeanMotion", SplitTLE[2][63:68], err) + return LineTwo{}, fmt.Errorf("%s: %#v\n%v", "Could not parse the RevolutionNumberAtEpoch", SplitTLE[2][63:68], err) } // Parse the Checksum |