Skip to content

Commit dbf86ff

Browse files
committed
typo fixes
1 parent b265a18 commit dbf86ff

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

gen_resources/generator/components.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function make_component_meta(name, props)
2929
end
3030

3131

32-
const _reserwed_words = Set(
32+
const _reserved_words = Set(
3333
["baremodule",
3434
"begin",
3535
"break",
@@ -61,7 +61,7 @@ const _reserwed_words = Set(
6161
"while"]
6262
)
6363
function is_reserved_world(w)
64-
return w in _reserwed_words
64+
return w in _reserved_words
6565
end
6666

6767
function filter_arg(argpair)

gen_resources/generator/deploy.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ function push_repo(repo_name, deploy_dir, tag)
139139
)
140140
end
141141
end
142-
function upload_to_resleases(repo_name, tag, tarball_path; attempts = 3)
142+
function upload_to_releases(repo_name, tag, tarball_path; attempts = 3)
143143
gh_auth = github_auth(;allow_anonymous=false)
144144
for attempt in 1:attempts
145145
try

gen_resources/generator/generator.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ function generate(ARGS, sources, build_dir, artifact_file)
7171
@info "artifact binding succefully to" artifact_file
7272

7373
cd(deploy_dir) do
74-
upload_to_resleases(deploy_repo,
74+
upload_to_releases(deploy_repo,
7575
deploy_tagname(new_info),
7676
realpath(joinpath(build_dir, tarball_name(new_info)))
7777
)

0 commit comments

Comments
 (0)