Skip to content

Commit 994c15b

Browse files
StefanKarpinskitkelman
authored andcommitted
replace ASCIIString & UTF8String with String (#16058)
1 parent 3ff9e5e commit 994c15b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

base/pkg.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ function write_tag_metadata(pkg::String, ver::VersionNumber, commit::String)
371371
end
372372

373373
"""
374-
available() -> Vector{ASCIIString}
374+
available() -> Vector{String}
375375
376376
Returns the names of available packages.
377377
"""
@@ -385,7 +385,7 @@ Returns the version numbers available for package `pkg`.
385385
available(pkg::AbstractString) = cd(Entry.available,pkg)
386386

387387
"""
388-
installed() -> Dict{ASCIIString,VersionNumber}
388+
installed() -> Dict{String,VersionNumber}
389389
390390
Returns a dictionary mapping installed package names to the installed version number of each
391391
package.

base/pkg/git.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ function iscommit(sha1s::Vector; dir="")
6363
end
6464

6565
immutable State
66-
head::ASCIIString
67-
index::ASCIIString
68-
work::ASCIIString
66+
head::String
67+
index::String
68+
work::String
6969
end
7070

7171
function snapshot(; dir="")

0 commit comments

Comments
 (0)