using自己创建的模块时出错

自己写了一个模块,在调用模块的时候出现这样的报错,请问是因为什么原因呢?

julia> using moduel
[ Info: Precompiling moduel [top-level]
┌ Warning: Replacing module `yx1`
└ @ Base loading.jl:947
ERROR: KeyError: key moduel [top-level] not found
Stacktrace:
 [1] getindex at .\dict.jl:477 [inlined]
 [2] root_module at .\loading.jl:967 [inlined]
 [3] require(::Base.PkgId) at .\loading.jl:933
 [4] require(::Module, ::Symbol) at .\loading.jl:922

模块里面的源码是这样的写的:
module yx1
export my1
function my1(name)
println("my name is ",name)
end
end

用相对路径using .yx1

啊!解决了!非常感谢您!