Skip to content

Commit f8d5743

Browse files
committed
fix typos
1 parent 30d5e80 commit f8d5743

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/GenericRegistry.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
GenericRegistry
33
44
Module providing basic tools to manage a *package registry*, by which is meant a package
5-
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
66
values, keyed on the environment's package dependencies, which is stored in a TOML
77
file. (This file is called Metadata.toml and is located in the same folder as environment
88
Project.toml file.) Not to be confused with a package registry in the sense of the
@@ -191,7 +191,7 @@ close(future) = rmprocs(future.where)
191191
"""
192192
GenericRegistry.put(pkg, value, environment)
193193
194-
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
195195
the key `pkg`.
196196
197197
"""

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)