Skip to content

Commit fc4ef31

Browse files
committed
Remove trailing slash
1 parent 78632a8 commit fc4ef31

4 files changed

Lines changed: 24 additions & 24 deletions

File tree

docs/configuration.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
:::note
44
You can find out more about event sourcing in the library
5-
[documentation](/docs/event-sourcing/latest/).
5+
[documentation](/docs/event-sourcing/latest).
66
This documentation is limited to bundle integration and configuration.
77
:::
88

@@ -33,7 +33,7 @@ The library will automatically register all classes marked with the `#[Aggregate
3333
:::
3434

3535
:::tip
36-
If you want to learn more about aggregates, read the [library documentation](/docs/event-sourcing/latest/aggregate/).
36+
If you want to learn more about aggregates, read the [library documentation](/docs/event-sourcing/latest/aggregate).
3737
:::
3838

3939
## Events
@@ -55,7 +55,7 @@ patchlevel_event_sourcing:
5555
```
5656

5757
:::tip
58-
If you want to learn more about events, read the [library documentation](/docs/event-sourcing/latest/events/).
58+
If you want to learn more about events, read the [library documentation](/docs/event-sourcing/latest/events).
5959
:::
6060

6161
## Custom Headers
@@ -277,7 +277,7 @@ All schema relevant commands are removed if you activate this option. You should
277277
:::
278278

279279
:::tip
280-
If you want to learn more about store, read the [library documentation](/docs/event-sourcing/latest/store/).
280+
If you want to learn more about store, read the [library documentation](/docs/event-sourcing/latest/store).
281281
:::
282282

283283
### Kernel Reset
@@ -332,7 +332,7 @@ patchlevel_event_sourcing:
332332

333333
:::tip
334334
You can find out more about subscriptions in the library
335-
[documentation](/docs/event-sourcing/latest/subscription/).
335+
[documentation](/docs/event-sourcing/latest/subscription).
336336
:::
337337

338338
### Store
@@ -499,7 +499,7 @@ patchlevel_event_sourcing:
499499
```
500500

501501
:::note
502-
You can find out more about the command bus and the aggregate handlers [here](/docs/event-sourcing/latest/command-bus/).
502+
You can find out more about the command bus and the aggregate handlers [here](/docs/event-sourcing/latest/command-bus).
503503
:::
504504

505505
### Instant Retry
@@ -541,7 +541,7 @@ patchlevel_event_sourcing:
541541
```
542542

543543
:::note
544-
You can find out more about the query bus [here](/docs/event-sourcing/latest/query-bus/).
544+
You can find out more about the query bus [here](/docs/event-sourcing/latest/query-bus).
545545
:::
546546

547547
## Event Bus
@@ -555,7 +555,7 @@ patchlevel_event_sourcing:
555555
```
556556

557557
:::note
558-
Default is the patchlevel [event bus](/docs/event-sourcing/latest/event-bus/).
558+
Default is the patchlevel [event bus](/docs/event-sourcing/latest/event-bus).
559559
:::
560560

561561
### Patchlevel (Default) Event Bus
@@ -687,7 +687,7 @@ final class Profile extends BasicAggregateRoot
687687
```
688688

689689
:::note
690-
You can find out more about snapshots [here](/docs/event-sourcing/latest/snapshots/).
690+
You can find out more about snapshots [here](/docs/event-sourcing/latest/snapshots).
691691
:::
692692

693693
## Cryptography
@@ -716,7 +716,7 @@ patchlevel_event_sourcing:
716716
```
717717

718718
:::note
719-
You can find out more about personal data [here](/docs/event-sourcing/latest/personal-data/).
719+
You can find out more about personal data [here](/docs/event-sourcing/latest/personal-data).
720720
:::
721721

722722
## Clock

docs/getting-started.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ final class GuestIsCheckedOut
7070
```
7171

7272
:::note
73-
You can find out more about events in the [library](/docs/event-sourcing/latest/events/).
73+
You can find out more about events in the [library](/docs/event-sourcing/latest/events).
7474
:::
7575

7676
## Define aggregates
@@ -171,7 +171,7 @@ final class Hotel extends BasicAggregateRoot
171171
```
172172

173173
:::note
174-
You can find out more about aggregates in the [library](/docs/event-sourcing/latest/aggregate/).
174+
You can find out more about aggregates in the [library](/docs/event-sourcing/latest/aggregate).
175175
:::
176176

177177
## Define projections
@@ -284,7 +284,7 @@ autoconfigure need to be enabled, otherwise you need add the `event_sourcing.sub
284284
:::
285285

286286
:::note
287-
You can find out more about projections in the [library](/docs/event-sourcing/latest/subscription/).
287+
You can find out more about projections in the [library](/docs/event-sourcing/latest/subscription).
288288
:::
289289

290290
## Processor
@@ -329,7 +329,7 @@ autoconfigure need to be enabled, otherwise you need add the `event_sourcing.sub
329329
:::
330330

331331
:::note
332-
You can find out more about processor in the [library](/docs/event-sourcing/latest/subscription/)
332+
You can find out more about processor in the [library](/docs/event-sourcing/latest/subscription)
333333
:::
334334

335335
## Database setup
@@ -348,7 +348,7 @@ bin/console event-sourcing:migrations:migrate
348348
```
349349

350350
:::note
351-
You can find out more about the cli in the [library](/docs/event-sourcing/latest/cli/).
351+
You can find out more about the cli in the [library](/docs/event-sourcing/latest/cli).
352352
:::
353353

354354
## Usage
@@ -433,5 +433,5 @@ If there are still open questions, create a ticket on Github and we will try to
433433

434434
:::note
435435
This documentation is limited to the bundle integration.
436-
You should also read the [library documentation](/docs/event-sourcing/latest/).
436+
You should also read the [library documentation](/docs/event-sourcing/latest).
437437
:::

docs/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ for [event-sourcing](https://github.com/patchlevel/event-sourcing) library.
1010
* Everything is included in the package for event sourcing
1111
* Based on [doctrine dbal](https://github.com/doctrine/dbal) and their ecosystem
1212
* Developer experience oriented and fully typed
13-
* Automatic [snapshot](/docs/event-sourcing/latest/snapshots/)-system to boost your performance
14-
* [Split](/docs/event-sourcing/latest/split-stream/) big aggregates into multiple streams
15-
* Versioned and managed lifecycle of [subscriptions](/docs/event-sourcing/latest/subscription/) like projections and processors
16-
* Safe usage of [Personal Data](/docs/event-sourcing/latest/personal-data/) with crypto-shredding
17-
* Smooth [upcasting](/docs/event-sourcing/latest/upcasting/) of old events
18-
* Simple setup with [scheme management](/docs/event-sourcing/latest/store/) and [doctrine migration](/docs/event-sourcing/latest/store/)
19-
* Built in [cli commands](/docs/event-sourcing/latest/cli/) with [symfony](https://symfony.com/)
13+
* Automatic [snapshot](/docs/event-sourcing/latest/snapshots)-system to boost your performance
14+
* [Split](/docs/event-sourcing/latest/split-stream) big aggregates into multiple streams
15+
* Versioned and managed lifecycle of [subscriptions](/docs/event-sourcing/latest/subscription) like projections and processors
16+
* Safe usage of [Personal Data](/docs/event-sourcing/latest/personal-data) with crypto-shredding
17+
* Smooth [upcasting](/docs/event-sourcing/latest/upcasting) of old events
18+
* Simple setup with [scheme management](/docs/event-sourcing/latest/store) and [doctrine migration](/docs/event-sourcing/latest/store)
19+
* Built in [cli commands](/docs/event-sourcing/latest/cli) with [symfony](https://symfony.com/)
2020
* and much more...
2121

2222
## Installation

docs/usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ But we provide only examples for specific symfony features.
55

66
:::note
77
You can find out more about event sourcing in the library
8-
[documentation](/docs/event-sourcing/latest/).
8+
[documentation](/docs/event-sourcing/latest).
99
This documentation is limited to bundle integration and configuration.
1010
:::
1111

0 commit comments

Comments
 (0)