Skip to content

Commit e137308

Browse files
authored
Merge pull request #1 from JuliaAI/bogus
Rm unrelated code comment
2 parents ff32bb5 + f8d5743 commit e137308

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/GenericRegistry.jl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
# using ArgParse
21
"""
32
GenericRegistry
43
54
Module providing basic tools to manage a *package registry*, by which is meant a package
6-
environment, together with "package metata", in the form of a dictionary of TOML-parsable
5+
environment, together with "package metadata", in the form of a dictionary of TOML-parsable
76
values, keyed on the environment's package dependencies, which is stored in a TOML
87
file. (This file is called Metadata.toml and is located in the same folder as environment
98
Project.toml file.) Not to be confused with a package registry in the sense of the
@@ -192,7 +191,7 @@ close(future) = rmprocs(future.where)
192191
"""
193192
GenericRegistry.put(pkg, value, environment)
194193
195-
In the metata dictionary associated with specified package environment, assign `value` to
194+
In the metadata dictionary associated with specified package environment, assign `value` to
196195
the key `pkg`.
197196
198197
"""

test/methods.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ N = nworkers()
2020
@test keys(dic) == Set(["Model1"])
2121
end
2222

23-
# build a dummmy registry:
23+
# build a dummy registry:
2424
registry = joinpath(tempdir(), randstring(20))
2525
mkpath(registry)
2626
project_string =

0 commit comments

Comments
 (0)