@@ -111,7 +111,7 @@ public bool[] Insert(RedisKey key, RedisValue[] items, int? capacity = null,
111111 throw new ArgumentOutOfRangeException ( nameof ( items ) ) ;
112112
113113 var args = BloomAux . BuildInsertArgs ( key , items , capacity , error , expansion , nocreate , nonscaling ) ;
114-
114+
115115 return _db . Execute ( BF . INSERT , args ) . ToBooleanArray ( ) ;
116116 }
117117
@@ -335,7 +335,7 @@ public async Task<bool> ReserveAsync(RedisKey key, double errorRate, long capaci
335335 /// <param name="iterator">Iterator value; either 0 or the iterator from a previous invocation of this command.</param>
336336 /// <returns>Tuple of iterator and data.</returns>
337337 /// <remarks><seealso href="https://redis.io/commands/bf.scandump"/></remarks>
338- public Tuple < long , Byte [ ] > ScanDump ( RedisKey key , long iterator )
338+ public Tuple < long , Byte [ ] > ScanDump ( RedisKey key , long iterator )
339339 {
340340 return _db . Execute ( BF . SCANDUMP , key , iterator ) . ToScanDumpTuple ( ) ;
341341 }
@@ -347,7 +347,7 @@ public Tuple<long,Byte[]> ScanDump(RedisKey key, long iterator)
347347 /// <param name="iterator">Iterator value; either 0 or the iterator from a previous invocation of this command.</param>
348348 /// <returns>Tuple of iterator and data.</returns>
349349 /// <remarks><seealso href="https://redis.io/commands/bf.scandump"/></remarks>
350- public async Task < Tuple < long , Byte [ ] > > ScanDumpAsync ( RedisKey key , long iterator )
350+ public async Task < Tuple < long , Byte [ ] > > ScanDumpAsync ( RedisKey key , long iterator )
351351 {
352352 var result = await _db . ExecuteAsync ( BF . SCANDUMP , key , iterator ) ;
353353 return result . ToScanDumpTuple ( ) ;
0 commit comments