diff options
author | Emile <hanemile@protonmail.com> | 2019-09-14 22:51:29 +0200 |
---|---|---|
committer | Emile <hanemile@protonmail.com> | 2019-09-14 22:51:29 +0200 |
commit | 71c975031203470c97667c3a6c467006abf59c45 (patch) | |
tree | 7e9e12dfcfb39bf1b197490a8a3cc0092c164b0c /convert.go | |
parent | c329b3df3b08d397ea4fb650e3df37911eedbb08 (diff) |
updated a mistake in error
Diffstat (limited to 'convert.go')
-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 |