We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 856b399 commit 49be98eCopy full SHA for 49be98e
.github/workflows/CI.yml
@@ -18,10 +18,9 @@ jobs:
18
fail-fast: false
19
matrix:
20
version:
21
- - "1.0" # Oldest supported version
22
- - "1.6" # LTS
+ - "min" # Oldest supported version
+ - "lts" # LTS
23
- "1" # Latest Release
24
- - "pre" # ScopedValue support introduced in Julia 1.11
25
os:
26
- ubuntu-latest
27
arch:
src/dispatch.jl
@@ -21,10 +21,10 @@ end
julia> m = first(methods(first, (String,)));
julia> m.sig
-Tuple{typeof(first), Any}
+Tuple{typeof(first), AbstractString}
julia> anonymous_signature(m)
-Tuple{Any}
+Tuple{AbstractString}
28
```
29
30
```@meta
0 commit comments