Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
shipengcheng1230 committed Nov 4, 2021
1 parent 0b6c504 commit 8c8f7fc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ docs/src/examples/generated
Manifest.toml

*.msh
.vscode
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "GmshTools"
uuid = "82e2f556-b1bd-5f1a-9576-f93c0da5f0ee"
authors = ["Pengcheng Shi"]
version = "0.5.0"
version = "0.5.1"

[deps]
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
Expand Down
2 changes: 1 addition & 1 deletion deps/build.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ else
end

GMSH_FOUND = false
if gmsh_root != nothing
if gmsh_root !== nothing
gmsh_bin = (Sys.iswindows() ? joinpath(gmsh_root,"bin","gmsh.exe") :
joinpath(gmsh_root,"bin","gmsh"))
if isfile(gmsh_bin)
Expand Down
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
```julia
using Pkg

julia> ENV["GMSH_LIB_PATH"] = "/opt/gmsh/lib64"; # here is your `libgmsh.so` or `gmsh.dll`
julia> ENV["GMSHROOT"] = "/opt/gmsh"; # here is your root directory of Gmsh SDK

julia> Pkg.build("GmshTools")
```
Expand Down
2 changes: 1 addition & 1 deletion src/GmshTools.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ deps_jl = joinpath(@__DIR__, "..", "deps", "deps.jl")
if !isfile(deps_jl)
s = """
Package GmshTools not installed properly.
Run Pkg.build(\"GridapGmsh\"), restart Julia and try again.
Run Pkg.build(\"GmshTools\"), restart Julia and try again.
"""
error(s)
end
Expand Down

2 comments on commit 8c8f7fc

@shipengcheng1230
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/48150

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.1 -m "<description of version>" 8c8f7fc01df183e14569d4cffa07153cafa5c6ae
git push origin v0.5.1

Please sign in to comment.