docs: fix SemverResult generic type missing an equals

This commit is contained in:
Erica Marigold 2024-11-11 16:09:12 +05:30 committed by GitHub
parent 8ad5760d8d
commit 4ca2e2f483
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -106,7 +106,7 @@ export type Version = {
}
--[=[
@type SemverResult<T, E = SemverError> Result<T, E>
@type SemverResult<T, E = SemverError> = Result<T, E>
@within Semver
]=]
export type SemverResult<T, E = SemverError> = Result<T, E>