Skip to content

Commit 5061a1c

Browse files
committed
chore: replace 'backup' -> 'export' in docs
1 parent 6e901ca commit 5061a1c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/java/io/weaviate/client6/v1/api/export/CreateExportRequest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,23 +55,23 @@ public Builder(String exportId) {
5555
this.exportId = exportId;
5656
}
5757

58-
/** Collection that should be included in the backup. */
58+
/** Collection that should be included in the export. */
5959
public Builder includeCollections(String... includeCollections) {
6060
return includeCollections(Arrays.asList(includeCollections));
6161
}
6262

63-
/** Collection that should be included in the backup. */
63+
/** Collection that should be included in the export. */
6464
public Builder includeCollections(List<String> includeCollections) {
6565
this.includeCollections.addAll(includeCollections);
6666
return this;
6767
}
6868

69-
/** Collection that should be excluded from the backup. */
69+
/** Collection that should be excluded from the export. */
7070
public Builder excludeCollections(String... excludeCollections) {
7171
return excludeCollections(Arrays.asList(excludeCollections));
7272
}
7373

74-
/** Collection that should be excluded from the backup. */
74+
/** Collection that should be excluded from the export. */
7575
public Builder excludeCollections(List<String> excludeCollections) {
7676
this.excludeCollections.addAll(excludeCollections);
7777
return this;

0 commit comments

Comments
 (0)