Merge pull request #2582 from oscarguindzberg/typo

Fix typo
This commit is contained in:
Manfred Karrer 2019-03-25 13:46:16 -05:00 committed by GitHub
commit 1e66d6e5c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@
package bisq.common;
/**
* Interface for the outside envelope object sent over the network or persisted to disc.
* Interface for the outside envelope object sent over the network or persisted to disk.
*/
public interface Envelope extends Proto {
}

View file

@ -20,7 +20,7 @@ package bisq.common.proto.persistable;
import bisq.common.Envelope;
/**
* Interface for the outside envelope object persisted to disc.
* Interface for the outside envelope object persisted to disk.
*/
public interface PersistableEnvelope extends Envelope {
}