about summary refs log tree commit diff
path: root/TLE.go
diff options
context:
space:
mode:
Diffstat (limited to 'TLE.go')
-rw-r--r--TLE.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/TLE.go b/TLE.go
index f534ea4..6929537 100644
--- a/TLE.go
+++ b/TLE.go
@@ -11,6 +11,7 @@ type TLE struct {
 	LineTwo   LineTwo   `json:"linetwo"`
 }
 
+// NewTLE returns a pointer to a TLE struct filled with the given Lines
 func NewTLE(titleLine TitleLine, lineOne LineOne, lineTwo LineTwo) *TLE {
 	return &TLE{TitleLine: titleLine, LineOne: lineOne, LineTwo: lineTwo}
 }