Skip to content

Commit 3eae2cb

Browse files
jirka.pinkas@gmail.comjirka.pinkas@gmail.com
authored andcommitted
cleanup
1 parent 6d99ddb commit 3eae2cb

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

src/main/java/cz/jiripinkas/jsitemapgenerator/generator/SitemapGenerator.java

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ private String toUrl(String baseUrl, String name) throws MalformedURLException {
202202
}
203203

204204
/**
205-
* Sets default prefix dir to name for all following WebPages. Final name will be "dirName/name"
205+
* Sets default prefix dir to name for all subsequent WebPages. Final name will be "dirName/name"
206206
* @param dirName Dir name
207207
* @return this
208208
*/
@@ -212,7 +212,7 @@ public SitemapGenerator defaultDir(String dirName) {
212212
}
213213

214214
/**
215-
* Sets default prefix dirs to name for all following WebPages. For dirs: ["a", "b", "c"], the final name will be "a/b/c/name"
215+
* Sets default prefix dirs to name for all subsequent WebPages. For dirs: ["a", "b", "c"], the final name will be "a/b/c/name"
216216
* @param dirNames Dir names
217217
* @return this
218218
*/
@@ -231,7 +231,7 @@ public SitemapGenerator resetDefaultDir() {
231231
}
232232

233233
/**
234-
* Sets default suffix extension for all following WebPages. Final name will be "name.extension"
234+
* Sets default suffix extension for all subsequent WebPages. Final name will be "name.extension"
235235
* @param extension Extension
236236
* @return this
237237
*/
@@ -250,7 +250,7 @@ public SitemapGenerator resetDefaultExtension() {
250250
}
251251

252252
/**
253-
* Sets default priority for all following WebPages to maximum (1.0)
253+
* Sets default priority for all subsequent WebPages to maximum (1.0)
254254
*
255255
* @return this
256256
*/
@@ -260,7 +260,7 @@ public SitemapGenerator defaultPriorityMax() {
260260
}
261261

262262
/**
263-
* Sets default priority for all following WebPages
263+
* Sets default priority for all subsequent WebPages
264264
* @param priority Default priority
265265
* @return this
266266
*/
@@ -282,7 +282,7 @@ public SitemapGenerator resetDefaultPriority() {
282282
}
283283

284284
/**
285-
* Sets default changeFreq for all following WebPages
285+
* Sets default changeFreq for all subsequent WebPages
286286
*
287287
* @param changeFreq ChangeFreq
288288
* @return this
@@ -293,7 +293,7 @@ public SitemapGenerator defaultChangeFreq(ChangeFreq changeFreq) {
293293
}
294294

295295
/**
296-
* Sets default changeFreq to ALWAYS for all following WebPages
296+
* Sets default changeFreq to ALWAYS for all subsequent WebPages
297297
*
298298
* @return this
299299
*/
@@ -303,7 +303,7 @@ public SitemapGenerator defaultChangeFreqAlways() {
303303
}
304304

305305
/**
306-
* Sets default changeFreq to HOURLY for all following WebPages
306+
* Sets default changeFreq to HOURLY for all subsequent WebPages
307307
*
308308
* @return this
309309
*/
@@ -313,7 +313,7 @@ public SitemapGenerator defaultChangeFreqHourly() {
313313
}
314314

315315
/**
316-
* Sets default changeFreq to DAILY for all following WebPages
316+
* Sets default changeFreq to DAILY for all subsequent WebPages
317317
*
318318
* @return this
319319
*/
@@ -323,7 +323,7 @@ public SitemapGenerator defaultChangeFreqDaily() {
323323
}
324324

325325
/**
326-
* Sets default changeFreq to WEEKLY for all following WebPages
326+
* Sets default changeFreq to WEEKLY for all subsequent WebPages
327327
*
328328
* @return this
329329
*/
@@ -333,7 +333,7 @@ public SitemapGenerator defaultChangeFreqWeekly() {
333333
}
334334

335335
/**
336-
* Sets default changeFreq to MONTHLY for all following WebPages
336+
* Sets default changeFreq to MONTHLY for all subsequent WebPages
337337
*
338338
* @return this
339339
*/
@@ -343,7 +343,7 @@ public SitemapGenerator defaultChangeFreqMonthly() {
343343
}
344344

345345
/**
346-
* Sets default changeFreq to YEARLY for all following WebPages
346+
* Sets default changeFreq to YEARLY for all subsequent WebPages
347347
*
348348
* @return this
349349
*/
@@ -353,7 +353,7 @@ public SitemapGenerator defaultChangeFreqYearly() {
353353
}
354354

355355
/**
356-
* Sets default changeFreq to NEVER for all following WebPages
356+
* Sets default changeFreq to NEVER for all subsequent WebPages
357357
*
358358
* @return this
359359
*/

0 commit comments

Comments
 (0)