0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-09-06 11:15:34 +02:00

Fix typo in register.go

All in a hard day's work.

Signed-off-by: Andrew Morgan <andrewm@matrix.org>
This commit is contained in:
Andrew Morgan 2018-05-22 18:44:07 +01:00
parent 6fed3a1be2
commit 93a6178d45

View file

@ -64,7 +64,7 @@ func (d sessionsDict) GetCompletedStages(sessionID string) []authtypes.LoginType
return make([]authtypes.LoginType, 0)
}
// AAddCompletedStage records that a session has completed an auth stage.
// AddCompletedStage records that a session has completed an auth stage.
func (d *sessionsDict) AddCompletedStage(sessionID string, stage authtypes.LoginType) {
d.sessions[sessionID] = append(d.GetCompletedStages(sessionID), stage)
}