Skip to content

Commit

Permalink
rename IPot to IVault
Browse files Browse the repository at this point in the history
  • Loading branch information
alec1o committed May 17, 2024
1 parent 757ecde commit ef37df3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace Byter
{
public interface IPot
public interface IVault
{
bool IsValid { get; }
byte[] Data { get; }
Expand Down
2 changes: 1 addition & 1 deletion src/src/partials/Vault.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace Byter
{
public partial class Vault : IPot
public partial class Vault : IVault
{
private readonly List<byte> _bytes;
public bool IsValid { get; }
Expand Down

0 comments on commit ef37df3

Please sign in to comment.