about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEmile <hanemile@protonmail.com>2019-08-19 15:07:11 +0200
committerEmile <hanemile@protonmail.com>2019-08-19 15:07:11 +0200
commitc701a93258287a358408f77bc17f3067a0f2aeb9 (patch)
treef5df2f224ce804c25e9f973878e56c7483b5ca9d
parenta877acbd7dd80e1733809f472699aacf6845c131 (diff)
commented the TitleLine Struct
-rw-r--r--TLE.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/TLE.go b/TLE.go
index 6929537..7bdb0f0 100644
--- a/TLE.go
+++ b/TLE.go
@@ -16,6 +16,8 @@ func NewTLE(titleLine TitleLine, lineOne LineOne, lineTwo LineTwo) *TLE {
 	return &TLE{TitleLine: titleLine, LineOne: lineOne, LineTwo: lineTwo}
 }
 
+// TitleLine defines the first line in the the TLE
+// It contains the name of the satellite
 type TitleLine struct {
 	Satname string `json:"satname"`
 }