From 777b5a09f2ed67d7f15217949d5c91a8a379a47b Mon Sep 17 00:00:00 2001 From: mykolav Date: Thu, 16 Aug 2018 19:04:19 +0300 Subject: [PATCH] Minor clean-ups. --- README.md | 2 +- UseNamedArgs.Tests/CodeFix/CodeFixExpectations.fs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2daf81e..79b9764 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Use named arguments for invocations of methods with multiple parameters of the same type. -## Motivation. +## Motivation Quoting from this [comment](https://github.com/dotnet/roslyn-analyzers/issues/1216#issuecomment-304967649 ) in a [new analyzer request](https://github.com/dotnet/roslyn-analyzers/issues/1216#issuecomment-304967649). diff --git a/UseNamedArgs.Tests/CodeFix/CodeFixExpectations.fs b/UseNamedArgs.Tests/CodeFix/CodeFixExpectations.fs index aadbfcf..861eb2a 100644 --- a/UseNamedArgs.Tests/CodeFix/CodeFixExpectations.fs +++ b/UseNamedArgs.Tests/CodeFix/CodeFixExpectations.fs @@ -138,4 +138,4 @@ module Expect = let actualFixedSource = fixedDoc.ToSourceCode().Replace("\r\n", "\n") let expectedFixedSource = expectedSource.Replace("\r\n", "\n") return Expect.equal actualFixedSource expectedFixedSource "" - } + } |> ignore