From a14736cd1311595f9d0aaf94e6852b246a606d13 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 12 Mar 2017 17:51:04 +0100 Subject: Change all `uint` types to `int` Because `strings.Itoa` is so much easier to call than `strconv.ParseUint`, and I needed to parse ints into strings to build the URL params in `buildSubmissionParams` (17f4ecc63615e3f3bef21a80f15e7c7b0e0cffa1). --- timetask/time_entry.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'timetask/time_entry.go') diff --git a/timetask/time_entry.go b/timetask/time_entry.go index a4d37ef..32e2825 100644 --- a/timetask/time_entry.go +++ b/timetask/time_entry.go @@ -9,7 +9,7 @@ type TimeEntry struct { Task string WorkType string `yaml:"work_type"` Date time.Time - Time uint + Time int Billable bool Description string } @@ -23,7 +23,7 @@ func (te *TimeEntry) UnmarshalYAML(unmarshal func(interface{}) error) error { Task string WorkType string `yaml:"work_type"` Date string - Time uint + Time int Billable bool Description string } -- cgit v1.2.3