From a877acbd7dd80e1733809f472699aacf6845c131 Mon Sep 17 00:00:00 2001 From: Emile Date: Mon, 19 Aug 2019 15:06:21 +0200 Subject: commented the TLE constructor --- TLE.go | 1 + 1 file changed, 1 insertion(+) (limited to 'TLE.go') 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} } -- cgit 1.4.1