From ce6c66a2e1c8a908b41aee02e0e2db63b29a3c96 Mon Sep 17 00:00:00 2001 From: Anant Prakash Date: Thu, 31 May 2018 20:41:16 +0530 Subject: [PATCH] Fix typo --- src/github.com/matrix-org/dendrite/clientapi/auth/auth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github.com/matrix-org/dendrite/clientapi/auth/auth.go b/src/github.com/matrix-org/dendrite/clientapi/auth/auth.go index ba78f98be..5a74f3f46 100644 --- a/src/github.com/matrix-org/dendrite/clientapi/auth/auth.go +++ b/src/github.com/matrix-org/dendrite/clientapi/auth/auth.go @@ -42,7 +42,7 @@ type DeviceDatabase interface { GetDeviceByAccessToken(ctx context.Context, token string) (*authtypes.Device, error) } -// AccountDatabase represents a account database. +// AccountDatabase represents an account database. type AccountDatabase interface { // Look up the account matching the given localpart. GetAccountByLocalpart(ctx context.Context, localpart string) (*authtypes.Account, error)