Skip to content

Commit

Permalink
nit; no need for unnecessarily broad type signature for internal func…
Browse files Browse the repository at this point in the history
…tions
  • Loading branch information
thchr committed Apr 25, 2023
1 parent e8b82c2 commit 1aa1e32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bravais-branches.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ end
# same as Table 94 of the HPKOT paper (i.e. paper "behind" SeeK). It simply returns the
# extended Bravais symbol as a `Symbol`. Note the input direct basis is expected to
# be a conventional cell in ITA settings
function extended_bravais(sgnum::Integer,
function extended_bravais(sgnum::Int,
bt::String,
Rs::Union{Nothing, StaticVector{3, <:StaticVector{3, <:Real}}},
Dᵛ::Val{3})
Expand Down Expand Up @@ -153,7 +153,7 @@ function extended_bravais(sgnum::Integer,
end # function

# --- 2D ---
function extended_bravais(sgnum::Integer,
function extended_bravais(sgnum::Int,
bt::String,
Rs::Union{Nothing, StaticVector{2, <:StaticVector{2, <:Real}}},
Dᵛ::Val{2})
Expand Down

2 comments on commit 1aa1e32

@thchr
Copy link
Owner Author

@thchr thchr commented on 1aa1e32 Apr 25, 2023

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/82246

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.13 -m "<description of version>" 1aa1e322bdb971837adff48547342fd8c32e17bf
git push origin v0.5.13

Please sign in to comment.