Skip to content

Commit

Permalink
Small doc refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
thekafkaf committed Apr 11, 2015
1 parent 21815f1 commit 37d03f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions commands/command_untrack.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ func untrackCommand(cmd *cobra.Command, args []string) {
}

scanner := bufio.NewScanner(attributes)
// Iterate through each line of the attributes file and rewrite it(!),
// if the path was meant to be untracked, omit it and print a message instead.

// Iterate through each line of the attributes file and rewrite it,
// if the path was meant to be untracked, omit it, and print a message instead.
for scanner.Scan() {
line := scanner.Text()
if strings.Contains(line, "filter=lfs") {
Expand Down

0 comments on commit 37d03f6

Please sign in to comment.