Skip to content

Commit 87bcae3

Browse files
committed
Some random grammar fixes
1 parent a276509 commit 87bcae3

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

services/campus/campus.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ type (
3737
}
3838

3939
// Week is a normal week plus the number since
40-
// the start of teaching period
40+
// the start of a teaching period
4141
Week struct {
4242
TeachingPeriod TeachingPeriod `json:"teachingPeriod"`
4343
WeekNo int `json:"weekNo"`

services/clapper/clapper.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ type (
5555
IsCancelled bool `db:"is_cancelled" json:"isCancelled"`
5656
IsTentative bool `db:"is_tentative" json:"isTentative"`
5757
Signups []Signup `json:"signups,omitempty"` // Used for shows
58-
Attendees []Attendee `json:"attendees,omitempty"` // Used for social, meet and other. This would be a XOR with Signups
58+
Attendees []Attendee `json:"attendees,omitempty"` // Used for social, meet and other. This would be an XOR with Signups
5959
}
6060
// Signup represents a signup sheet which contains a group of roles
6161
Signup struct {

services/creator/video/new.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ func (s *Store) NewItem(ctx context.Context, v video.New) (int, error) {
7979
return nil
8080
})
8181
if err != nil {
82-
// Since we've wrapped in transaction the DB is safe, will just need to make sure s3 is back to original state
82+
// Since we've wrapped in transaction the DB is safe, will just need to make sure s3 is back to the original state
8383
_, err = s.cdn.DeleteObjectWithContext(ctx, &s3.DeleteObjectInput{
8484
Bucket: aws.String(s.conf.ServeBucket),
8585
Key: aws.String(s.conf.IngestBucket + "/" + v.FileID[:32]),

0 commit comments

Comments
 (0)