Skip to content

Commit 57b6e87

Browse files
committed
dotnet format
1 parent 6b83260 commit 57b6e87

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/Elastic.Markdown/Myst/Directives/IncludeBlock.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ private void ExtractInclusionPath(ParserContext context)
7474

7575
// literal includes may point to locations other than `_snippets` since they do not
7676
// participate in emitting links
77-
if (Literal) return;
77+
if (Literal)
78+
return;
7879

7980
var file = FileSystem.FileInfo.New(IncludePath);
8081

tests/Elastic.Markdown.Tests/DocSet/LinkReferenceTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public void EmitsLinks() =>
2626

2727
[Fact]
2828
public void ShouldNotIncludeSnippets() =>
29-
Reference.Links.Should().NotContain(l=>l.Contains("_snippets/"));
29+
Reference.Links.Should().NotContain(l => l.Contains("_snippets/"));
3030
}
3131

3232
public class GitCheckoutInformationTests(ITestOutputHelper output) : NavigationTestsBase(output)

0 commit comments

Comments
 (0)