Skip to content

Commit e886083

Browse files
authored
Fix order of parameters (#1238)
1 parent d52ec57 commit e886083

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
- Fix [RCS1234](https://josefpihrt.github.io/docs/roslynator/analyzers/RCS1234) ([PR](https://github.com/dotnet/roslynator/pull/1233))
1313
- Fix refactoring [Inline method](https://josefpihrt.github.io/docs/roslynator/refactorings/RR0062) ([PR](https://github.com/dotnet/roslynator/pull/1234))
14+
- [CLI] Fix globbing ([PR](https://github.com/dotnet/roslynator/pull/1238))
1415

1516
## [4.6.1] - 2023-10-23
1617

src/Workspaces.Core/Extensions/Extensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public static bool IsMatch(this Matcher matcher, ISymbol symbol, string? rootDir
2727
if (tree is not null)
2828
{
2929
PatternMatchingResult result = (rootDirectoryPath is not null)
30-
? matcher.Match(tree.FilePath, rootDirectoryPath)
30+
? matcher.Match(rootDirectoryPath, tree.FilePath)
3131
: matcher.Match(tree.FilePath);
3232

3333
if (!result.HasMatches)

0 commit comments

Comments
 (0)