chore: update interface record per libp2p pr feedback

This commit is contained in:
Vasco Santos 2020-12-10 11:15:05 +01:00
parent e73646c893
commit a99b9582dc

View File

@ -15,7 +15,7 @@ export interface Record {
*/
marshal(): Uint8Array;
/**
* erifies if the other provided Record is identical to this one.
* Verifies if the other provided Record is identical to this one.
*/
equals(other: any): other is Record
equals(other: unknown): boolean
}