Skip to content

Commit a7271bb

Browse files
committed
Nitpick comment fix
1 parent 7e8623d commit a7271bb

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

packages/dart/lib/parse_server_sdk.dart

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,12 @@ class Parse {
105105
/// Parameters:
106106
///
107107
/// * [restRetryIntervals] - Optional list of retry delay intervals (in milliseconds)
108-
/// for read operations (GET, DELETE). Defaults to [0, 250, 500, 1000, 2000].
108+
/// for read operations. Applies to: GET, DELETE, and getBytes methods.
109+
/// Defaults to [0, 250, 500, 1000, 2000].
109110
/// * [restRetryIntervalsForWrites] - Optional list of retry delay intervals for
110-
/// write operations (POST, PUT). Defaults to [] (no retries) to prevent duplicate
111-
/// data creation. Configure only if you have idempotency guarantees in place.
111+
/// write operations. Applies to: POST, PUT, and postBytes methods.
112+
/// Defaults to [] (no retries) to prevent duplicate data creation.
113+
/// Configure only if you have idempotency guarantees in place.
112114
/// * [liveListRetryIntervals] - Optional list of retry delay intervals for
113115
/// LiveQuery operations.
114116
Future<Parse> initialize(

0 commit comments

Comments
 (0)