chore: remove repetitive words (#449) · boyter/scc@c4900ef

Original file line numberDiff line numberDiff line change

@@ -29,7 +29,7 @@ const (

2929

// SheBang is a global constant for indicating a shebang file header

3030

const SheBang string = "#!"

3131
32-

// LineType what type of line are are processing

32+

// LineType what type of line are processing

3333

type LineType int32

3434
3535

// These are not meant to be CAMEL_CASE but as it us used by an external project we cannot change it

@@ -411,7 +411,7 @@ func CountStats(fileJob *FileJob) {

411411

fileJob.Hash = blake2b.New256()

412412

}

413413
414-

// If the file has a length of 0 it is is empty then we say it has no lines

414+

// If the file has a length of 0 it is empty then we say it has no lines

415415

if fileJob.Bytes == 0 {

416416

fileJob.Lines = 0

417417

return