@@ -25,17 +25,17 @@ These parameters can be configured per host (explicit match or regex).
2525
2626 This may be useful for hosts with few changes within a long period of time.
2727
28- * Remove history entries right after the ` X ` th entry .
28+ * Remove history entries right after entry number ` X ` .
2929
3030 This may be useful for hosts with many changes within a short period of time.
3131
3232 * ** Defensive cleanup strategy:** Remove history entries older than the configured file age ** AND**
33- remove history entries right after the ` X ` th entry .
33+ remove history entries right after entry number ` X ` .
3434
3535 See example below.
3636
3737 * ** Offensive cleanup strategy:** Remove history entries older than the configured file age ** OR**
38- remove history entries right after the ` X ` th entry .
38+ remove history entries right after entry number ` X ` .
3939
4040 See example below.
4141
@@ -54,7 +54,7 @@ is also configurable. Abandoned host files include
5454
5555 * Delta cache files
5656
57- The default is set to ` Remove history entries older than 400 days and remove history entries right after the 100 th entry ` for new sites.
57+ The default is set to ` Remove history entries older than 400 days and remove history entries right after entry number 100 ` for new sites.
5858Existing sites don't have a default.
5959
6060The housekeeping job runs once a day.
@@ -63,7 +63,7 @@ The housekeeping job runs once a day.
6363
6464` now = 11 ` , ` history entries = [10, 9, 8, 7, 6, 5, 4, 3, 2, 1] ` (represents the files and their timestamps)
6565
66- * Remove history entries older than 6, remove history entries right after the 3rd entry
66+ * Remove history entries older than 6, remove history entries right after entry number 3
6767
6868 * Intermediate result ` file age ` : ` [5, 4, 3, 2, 1] `
6969
@@ -73,7 +73,7 @@ The housekeeping job runs once a day.
7373
7474 * Result of ** OR** : Remove ` [7, 6, 5, 4, 3, 2, 1] ` (it's the union of both intermediate results)
7575
76- * Remove history entries older than 4, remove history entries right after the 6th entry
76+ * Remove history entries older than 4, remove history entries right after entry number 6
7777
7878 * Intermediate result ` file age ` : ` [7, 6, 5, 4, 3, 2, 1] `
7979
0 commit comments