aboutsummaryrefslogtreecommitdiff
path: root/ber/marshal.go
diff options
context:
space:
mode:
Diffstat (limited to 'ber/marshal.go')
-rw-r--r--ber/marshal.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/ber/marshal.go b/ber/marshal.go
index 569c33d..b5096ec 100644
--- a/ber/marshal.go
+++ b/ber/marshal.go
@@ -9,8 +9,8 @@ type Marshaler interface {
Marshal() ([]byte, error)
}
-type Unarshaler interface {
- Unarshal([]byte) error
+type Unmarshaler interface {
+ Unmarshal([]byte) error
}
type ASN1 interface {