Fix wrong documentation

This commit is contained in:
Simon Edelmann 2021-01-09 17:41:19 +01:00 committed by GitHub
parent b098372b31
commit c9647cb694
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ extension Todo: CRUDModel {
var done: Bool var done: Bool
} }
func `public`() -> Public { var `public`: Public {
Public.init(title: title, done: done) Public.init(title: title, done: done)
} }
} }