Skip to content

Commit 7b1eecc

Browse files
authored
Fix some typos (#745)
Signed-off-by: Alexander Seiler <[email protected]>
1 parent abc1838 commit 7b1eecc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/types.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ FileInfo(fm::ModuleExprsSigs, cachefile="") = FileInfo(fm, cachefile, Tuple{Modu
9696
"""
9797
FileInfo(mod::Module, cachefile="")
9898
99-
Initialze an empty FileInfo for a file that is `include`d into `mod`.
99+
Initialize an empty FileInfo for a file that is `include`d into `mod`.
100100
"""
101101
FileInfo(mod::Module, cachefile::AbstractString="") = FileInfo(ModuleExprsSigs(mod), cachefile)
102102

test/runtests.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ end
6060

6161
sig_type_exprs(ex) = Revise.sig_type_exprs(Main, ex) # just for testing purposes
6262

63-
# accomodate changes in Dict printing w/ Julia version
63+
# accommodate changes in Dict printing w/ Julia version
6464
const pair_op_compact = let io = IOBuffer()
6565
print(IOContext(io, :compact=>true), Dict(1=>2))
6666
String(take!(io))[7:end-2]
@@ -3631,7 +3631,7 @@ GC.gc(); GC.gc(); GC.gc() # work-around for https://github.com/JuliaLang/julia
36313631
# see #532 Fix InitError opening none existent Project.toml
36323632
function load_in_empty_project_test()
36333633
# This will try to load Revise in a julia seccion
3634-
# with an empty enviroment (missing Project.toml)
3634+
# with an empty environment (missing Project.toml)
36353635

36363636
julia = Base.julia_cmd()
36373637
revise_proj = escape_string(Base.active_project())
@@ -3661,7 +3661,7 @@ function load_in_empty_project_test()
36613661
end
36623662
end
36633663

3664-
do_test("Import in empty enviroment (issue #532)") && @testset "Import in empty enviroment (issue #532)" begin
3664+
do_test("Import in empty environment (issue #532)") && @testset "Import in empty environment (issue #532)" begin
36653665
load_in_empty_project_test();
36663666
end
36673667

0 commit comments

Comments
 (0)