Skip to content

Commit bf56498

Browse files
committed
cleanup sentences
1 parent 18a4322 commit bf56498

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

docs/basics/options.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -753,9 +753,9 @@ skipRecheck: false,
753753
:::tip
754754

755755
It's recommended to use `includeSingleEpisodes: false` in your config and override it for webhook
756-
commands triggered on [download completion](../tutorials/triggering-searches.md#setting-up-your-torrent-client).
756+
commands triggered on [`download completion`](../tutorials/triggering-searches.md#setting-up-your-torrent-client).
757757
Combined with matching single episodes from announce, this should match all episodes without
758-
the downside of searching for [trumped/dead torrents](../v6-migration.md#updated-includesingleepisodes-behavior).
758+
the downside of searching for [`trumped/dead torrents`](../v6-migration.md#updated-includesingleepisodes-behavior).
759759

760760
:::
761761

docs/tutorials/triggering-searches.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ was just processed by cross-seed.
7878

7979
:::tip
8080

81-
Use the webhook command with `-d "includeSingleEpisodes=true"` with `includeSingleEpisodes: false`
82-
in your config to minimize useless searches.
81+
Use the webhook command with `-d "includeSingleEpisodes=true"` while keeping
82+
`includeSingleEpisodes: false` in your config to minimize useless searches.
8383

8484
[**Read more**](../v6-migration.md#updated-includesingleepisodes-behavior)
8585

@@ -94,7 +94,9 @@ in your config to minimize useless searches.
9494
#!/bin/sh
9595
curl -XPOST <BASE_URL>/api/webhook?apikey=<API_KEY> -d "infoHash=$2" -d "includeSingleEpisodes=true"
9696
```
97+
9798
OR
99+
98100
```shell
99101
#!/bin/sh
100102
curl -XPOST <BASE_URL>/api/webhook?apikey=<API_KEY> -d "infoHash=$2"
@@ -121,7 +123,9 @@ in your config to minimize useless searches.
121123
```shell
122124
curl -XPOST <BASE_URL>/api/webhook?apikey=<API_KEY> -d "infoHash=%I" -d "includeSingleEpisodes=true"
123125
```
126+
124127
OR
128+
125129
```shell
126130
curl -XPOST <BASE_URL>/api/webhook?apikey=<API_KEY> -d "infoHash=%I"
127131
```
@@ -137,7 +141,9 @@ in your config to minimize useless searches.
137141
#!/bin/sh
138142
curl -XPOST <BASE_URL>/api/webhook?apikey=<API_KEY> -d "infoHash=$TR_TORRENT_HASH" -d "includeSingleEpisodes=true"
139143
```
144+
140145
OR
146+
141147
```shell
142148
#!/bin/sh
143149
curl -XPOST <BASE_URL>/api/webhook?apikey=<API_KEY> -d "infoHash=$TR_TORRENT_HASH"
@@ -163,7 +169,9 @@ in your config to minimize useless searches.
163169
path=$3
164170
curl -XPOST <BASE_URL>/api/webhook?apikey=<API_KEY> -d "infoHash=$infoHash" -d "includeSingleEpisodes=true"
165171
```
172+
166173
OR
174+
167175
```shell
168176
#!/bin/bash
169177
infoHash=$1

0 commit comments

Comments
 (0)