Skip to content

Commit e628eb0

Browse files
ChrisRackauckastkelman
authored andcommitted
Update docs for type alias with free parameters (#353)
I didn't know from the current docs that it's only if the RHS has a type parameter. I thought it was whether any had a type parameter. This update clarifies that `@compat` is only needed when the LHS has a type parameter.
1 parent 1b4566d commit e628eb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Currently, the `@compat` macro supports the following syntaxes:
7676
This only works when `@compat` is applied directly on the declaration.
7777

7878
* `@compat A{T} = B{T}` or `@compat const A{T} = B{T}` to declare type alias with free
79-
parameters. [#20500]. Use `const A = B` for type alias without free parameters.
79+
parameters. [#20500]. Use `const A = B{T}` or `const A = B` for type alias without free parameters (i.e. no type parameter on the left hand side).
8080

8181
* `@compat Base.IndexStyle(::Type{<:MyArray}) = IndexLinear()` and `@compat Base.IndexStyle(::Type{<:MyArray}) = IndexCartesian()` to define traits for abstract arrays, replacing the former `Base.linearindexing{T<:MyArray}(::Type{T}) = Base.LinearFast()` and `Base.linearindexing{T<:MyArray}(::Type{T}) = Base.LinearSlow()`, respectively.
8282

0 commit comments

Comments
 (0)