Skip to content

Commit

Permalink
louden typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Datseris committed Jan 19, 2020
1 parent ba545c0 commit bf98275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/general.jl
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ louden(notes::Notes, v) =
Notes(louden(notes.notes, v), notes.tpq)
louden(notes::Vector{N}, v) where {N<:AbstractNote} =
[Note(n.pitch, n.velocity + v, n.position, n.duration, n.channel) for n in notes]
Base.louden(n::N, ticks) where {N<:AbstractNote} =
louden(n::N, ticks) where {N<:AbstractNote} =
N(n.pitch, n.velocity+ticks, n.position, n.duration, n.channel)

"""
Expand Down

2 comments on commit bf98275

@Datseris
Copy link
Member Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register()

@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 updated: JuliaRegistries/General/8151

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 Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v1.3.0 -m "<description of version>" bf98275601f74374ecf4a21c254f1803669c55ff
git push origin v1.3.0

Please sign in to comment.