Skip to content

Commit 510b8cf

Browse files
committed
Little markdown linting clean up
1 parent fca5c3c commit 510b8cf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/configuration/hostbuilder.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ public interface IConfigureMarten
256256
<sup><a href='https://github.com/JasperFx/marten/blob/master/src/Marten/MartenServiceCollectionExtensions.cs#L877-L888' title='Snippet source file'>snippet source</a> | <a href='#snippet-sample_iconfiguremarten' title='Start of snippet'>anchor</a></sup>
257257
<!-- endSnippet -->
258258

259-
You could alternatively implement a custom `IConfigureMarten` (or `IConfigureMarten<T> where T : IDocumentStore` if you're [working with multiple databases](#working-with-multiple-marten-databases)) class like so:
259+
You could alternatively implement a custom `IConfigureMarten` (or `IConfigureMarten<T> where T : IDocumentStore` if you're working with multiple databases class like so:
260260

261261
<!-- snippet: sample_UserMartenConfiguration -->
262262
<a id='snippet-sample_usermartenconfiguration'></a>

docs/configuration/optimized_artifact_workflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,4 @@ At production time, that changes to:
6969
of automatic database change detection and migration at runtime. This is also a minor performance
7070
optimization that sidesteps potential locking issues.
7171
* `StoreOptions.GeneratedCodeMode = TypeLoadMode.Static` to only try to load pre-built types from
72-
what Marten thinks is the application assembly.
72+
what Marten thinks is the application assembly.

docs/migration-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The projection base classes have minor changes in Marten 8:
4545
* The `SingleStreamProjection` now requires 2 generic type arguments for both the projected document type and the identity type of that document. This compromise was made to better support the increasing widespread usage of strong typed identifiers.
4646

4747
v7: `InvoiceProjection : SingleStreamProjection<Invoice>`
48-
~~~~
48+
4949
v8: `InvoiceProjection : SingleStreamProjection<Invoice, InvoiceId>`
5050

5151
* Both `SingleStreamProjection` and `MultiStreamProjection` have improved options for writing explicit code for projections for more complex scenarios or if you just prefer that over the conventional `Apply` / `Create` method approach

0 commit comments

Comments
 (0)