Skip to content
This repository has been archived by the owner on Oct 31, 2021. It is now read-only.

Commit

Permalink
fix for PrintfSpecifiersUsageGetterTests
Browse files Browse the repository at this point in the history
  • Loading branch information
smoothdeveloper committed Feb 11, 2017
1 parent 1919a70 commit 6a18239
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ type PrintfSpecifiersUsageTaggerHelper() =
let lastLine = snapshot.GetLineFromPosition(span.Span.End.Position)
let colStart = span.Span.Start.Position - firstLine.Start.Position + 1
let colEnd = span.Span.End.Position - lastLine.Start.Position + 1
(lineStart, colStart, lineEnd, colEnd - 1))
(lineStart, colStart, lineEnd, colEnd))

module PrintfSpecifiersUsageTaggerTests =
let helper = PrintfSpecifiersUsageTaggerHelper()
Expand Down

0 comments on commit 6a18239

Please sign in to comment.