mirror of
https://github.com/0x5eal/semver-luau.git
synced 2024-12-12 15:00:36 +00:00
docs: fix SemverResult
generic type missing an equals
This commit is contained in:
parent
5ac57f9661
commit
97aefcc2b4
1 changed files with 1 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue