Skip to content

Commit

Permalink
dotnet format
Browse files Browse the repository at this point in the history
  • Loading branch information
shacharPash committed Sep 27, 2023
1 parent 3ebfead commit 1e998b9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/NRedisStack/Bloom/BloomCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public BloomCommands(IDatabase db) : base(db)
}

/// <inheritdoc/>
public bool Add (RedisKey key, RedisValue item)
public bool Add(RedisKey key, RedisValue item)
{
return _db.Execute(BloomCommandBuilder.Add(key, item)).ToString() == "1";
}
Expand Down
2 changes: 1 addition & 1 deletion src/NRedisStack/Search/SearchCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public AggregationResult Aggregate(string index, AggregationRequest query)
}

/// <inheritdoc/>
public bool AliasAdd (string alias, string index)
public bool AliasAdd(string alias, string index)
{
return _db.Execute(SearchCommandBuilder.AliasAdd(alias, index)).OKtoBoolean();
}
Expand Down
2 changes: 1 addition & 1 deletion tests/NRedisStack.Tests/Json/JsonTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,7 @@ public async Task MSetAsync()
};
await commands.MSetAsync(values)
;
var result = await commands.MGetAsync (keys.Select(x => new RedisKey(x)).ToArray(), "$.a");
var result = await commands.MGetAsync(keys.Select(x => new RedisKey(x)).ToArray(), "$.a");

Assert.Equal("[\"hello\"]", result[0].ToString());
Assert.Equal("[\"world\"]", result[1].ToString());
Expand Down

0 comments on commit 1e998b9

Please sign in to comment.