Skip to content

Commit 7c2bc15

Browse files
committed
update: comments
1 parent f4c64ff commit 7c2bc15

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

arango/collection.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1546,7 +1546,7 @@ def insert_many(
15461546
if merge is not None:
15471547
params["mergeObjects"] = merge
15481548

1549-
# New in 3.9.6 and 3.10.2
1549+
# New in ArangoDB 3.9.6 and 3.10.2
15501550
if refill_index_caches is not None:
15511551
params["refillIndexCaches"] = refill_index_caches
15521552

@@ -1653,7 +1653,7 @@ def update_many(
16531653
if sync is not None:
16541654
params["waitForSync"] = sync
16551655

1656-
# New in 3.9.6 and 3.10.2
1656+
# New in ArangoDB 3.9.6 and 3.10.2
16571657
if refill_index_caches is not None:
16581658
params["refillIndexCaches"] = refill_index_caches
16591659

@@ -1826,7 +1826,7 @@ def replace_many(
18261826
if sync is not None:
18271827
params["waitForSync"] = sync
18281828

1829-
# New in 3.9.6 and 3.10.2
1829+
# New in ArangoDB 3.9.6 and 3.10.2
18301830
if refill_index_caches is not None:
18311831
params["refillIndexCaches"] = refill_index_caches
18321832

@@ -1977,7 +1977,7 @@ def delete_many(
19771977
if sync is not None:
19781978
params["waitForSync"] = sync
19791979

1980-
# New in 3.9.6 and 3.10.2
1980+
# New in ArangoDB 3.9.6 and 3.10.2
19811981
if refill_index_caches is not None:
19821982
params["refillCaches"] = refill_index_caches
19831983

@@ -2324,7 +2324,7 @@ def insert(
23242324
if merge is not None:
23252325
params["mergeObjects"] = merge
23262326

2327-
# New in 3.9.6 and 3.10.2
2327+
# New in ArangoDB 3.9.6 and 3.10.2
23282328
if refill_index_caches is not None:
23292329
params["refillIndexCaches"] = refill_index_caches
23302330

@@ -2409,7 +2409,7 @@ def update(
24092409
if sync is not None:
24102410
params["waitForSync"] = sync
24112411

2412-
# New in 3.9.6 and 3.10.2
2412+
# New in ArangoDB 3.9.6 and 3.10.2
24132413
if refill_index_caches is not None:
24142414
params["refillIndexCaches"] = refill_index_caches
24152415

@@ -2485,7 +2485,7 @@ def replace(
24852485
if sync is not None:
24862486
params["waitForSync"] = sync
24872487

2488-
# New in 3.9.6 and 3.10.2
2488+
# New in ArangoDB 3.9.6 and 3.10.2
24892489
if refill_index_caches is not None:
24902490
params["refillIndexCaches"] = refill_index_caches
24912491

@@ -2570,7 +2570,7 @@ def delete(
25702570
if sync is not None:
25712571
params["waitForSync"] = sync
25722572

2573-
# New in 3.9.6 and 3.10.2
2573+
# New in ArangoDB 3.9.6 and 3.10.2
25742574
if refill_index_caches is not None:
25752575
params["refillIndexCaches"] = refill_index_caches
25762576

0 commit comments

Comments
 (0)