Skip to content

Commit be991e1

Browse files
committed
Docs changes
1 parent c9962e7 commit be991e1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/diff-tool.custom.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ var resolvedTool = DiffTools.AddTool(
2424
exePath: diffToolPath,
2525
binaryExtensions: [".jpg"])!;
2626
```
27-
<sup><a href='/src/DiffEngine.Tests/DiffToolsTest.cs#L17-L31' title='Snippet source file'>snippet source</a> | <a href='#snippet-AddTool' title='Start of snippet'>anchor</a></sup>
27+
<sup><a href='/src/DiffEngine.Tests/DiffToolsTest.cs#L15-L29' title='Snippet source file'>snippet source</a> | <a href='#snippet-AddTool' title='Start of snippet'>anchor</a></sup>
2828
<!-- endSnippet -->
2929

3030
Add a tool based on existing resolved tool:
@@ -39,7 +39,7 @@ var resolvedTool = DiffTools.AddToolBasedOn(
3939
Left: (temp, target) => $"\"custom args \"{target}\" \"{temp}\"",
4040
Right: (temp, target) => $"\"custom args \"{temp}\" \"{target}\""))!;
4141
```
42-
<sup><a href='/src/DiffEngine.Tests/DiffToolsTest.cs#L64-L73' title='Snippet source file'>snippet source</a> | <a href='#snippet-AddToolBasedOn' title='Start of snippet'>anchor</a></sup>
42+
<sup><a href='/src/DiffEngine.Tests/DiffToolsTest.cs#L83-L92' title='Snippet source file'>snippet source</a> | <a href='#snippet-AddToolBasedOn' title='Start of snippet'>anchor</a></sup>
4343
<!-- endSnippet -->
4444

4545

@@ -69,7 +69,7 @@ var resolvedTool = DiffTools.AddToolBasedOn(
6969

7070
await DiffRunner.LaunchAsync(resolvedTool!, "PathToTempFile", "PathToTargetFile");
7171
```
72-
<sup><a href='/src/DiffEngine.Tests/DiffToolsTest.cs#L84-L95' title='Snippet source file'>snippet source</a> | <a href='#snippet-AddToolAndLaunch' title='Start of snippet'>anchor</a></sup>
72+
<sup><a href='/src/DiffEngine.Tests/DiffToolsTest.cs#L103-L114' title='Snippet source file'>snippet source</a> | <a href='#snippet-AddToolAndLaunch' title='Start of snippet'>anchor</a></sup>
7373
<!-- endSnippet -->
7474

7575

docs/diff-tool.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ This value can also be set using [the DiffEngineTray options dialog](/docs/tray.
6363
```cs
6464
DiffRunner.MaxInstancesToLaunch(10);
6565
```
66-
<sup><a href='/src/DiffEngine.Tests/DiffToolsTest.cs#L8-L10' title='Snippet source file'>snippet source</a> | <a href='#snippet-MaxInstancesToLaunch' title='Start of snippet'>anchor</a></sup>
66+
<sup><a href='/src/DiffEngine.Tests/DiffToolsTest.cs#L6-L8' title='Snippet source file'>snippet source</a> | <a href='#snippet-MaxInstancesToLaunch' title='Start of snippet'>anchor</a></sup>
6767
<!-- endSnippet -->
6868

6969

docs/diff-tool.order.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@ For example `VisualStudio,Meld` will result in VisualStudio then Meld then all o
5151
```cs
5252
DiffTools.UseOrder(DiffTool.VisualStudio, DiffTool.AraxisMerge);
5353
```
54-
<sup><a href='/src/DiffEngine.Tests/DiffToolsTest.cs#L147-L151' title='Snippet source file'>snippet source</a> | <a href='#snippet-UseOrder' title='Start of snippet'>anchor</a></sup>
54+
<sup><a href='/src/DiffEngine.Tests/DiffToolsTest.cs#L166-L170' title='Snippet source file'>snippet source</a> | <a href='#snippet-UseOrder' title='Start of snippet'>anchor</a></sup>
5555
<!-- endSnippet -->

0 commit comments

Comments
 (0)