Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/GenericRegistry.jl
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# using ArgParse
"""
GenericRegistry

Module providing basic tools to manage a *package registry*, by which is meant a package
environment, together with "package metata", in the form of a dictionary of TOML-parsable
environment, together with "package metadata", in the form of a dictionary of TOML-parsable
values, keyed on the environment's package dependencies, which is stored in a TOML
file. (This file is called Metadata.toml and is located in the same folder as environment
Project.toml file.) Not to be confused with a package registry in the sense of the
Expand Down Expand Up @@ -192,7 +191,7 @@ close(future) = rmprocs(future.where)
"""
GenericRegistry.put(pkg, value, environment)

In the metata dictionary associated with specified package environment, assign `value` to
In the metadata dictionary associated with specified package environment, assign `value` to
the key `pkg`.

"""
Expand Down
2 changes: 1 addition & 1 deletion test/methods.jl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ N = nworkers()
@test keys(dic) == Set(["Model1"])
end

# build a dummmy registry:
# build a dummy registry:
registry = joinpath(tempdir(), randstring(20))
mkpath(registry)
project_string =
Expand Down
Loading