Skip to content

Commit

Permalink
Tidy up
Browse files Browse the repository at this point in the history
  • Loading branch information
si618 committed Mar 24, 2024
1 parent b0268ac commit 099de2f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Benchmarks.App/ConsoleWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ internal static class ConsoleWriter
private const string Header =
"""
______ _______ __ _ _______ _ _ _______ _______ _______ _ _ ________
|_____) |______ | \\ | | |_____| | | | |_____| |_____/ |____/ |______
|_____) |______ | \\_| |______ | | | | | | | | \\ | \\ _______|
|_____| |______ | \\ | | |_____| | | | |_____| |_____/ |____/ |______
|_____| |______ | \\_| |______ | | | | | | | | \\ | \\ _______|

""";
private static readonly Rainbow Lolcat = new(new RainbowStyle(EscapeSequence.Spectre));
Expand Down
2 changes: 1 addition & 1 deletion Benchmarks.Core/Repositories/RepositoryBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public abstract class RepositoryBase(BenchmarkDbContext dbContext)
{
protected BenchmarkDbContext DbContext { get; init; } = dbContext;
protected BenchmarkDbContext DbContext { get; } = dbContext;

public async Task MigrateAsync() => await DbContext.Database.MigrateAsync();
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 🧪 Benchmarks
# 🧪 Benchmarks

[![build](https://github.com/si618/benchmarks/actions/workflows/build.yml/badge.svg)](https://github.com/si618/benchmarks/actions/workflows/build.yml)
[![License](https://img.shields.io/badge/license-Apache_2.0-blue.svg)](LICENSE)
Expand Down

0 comments on commit 099de2f

Please sign in to comment.