Skip to content

Commit

Permalink
fix doc refs
Browse files Browse the repository at this point in the history
  • Loading branch information
sadit committed Sep 22, 2023
1 parent 947a31e commit a2bafb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/updatevoc.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Update `voc` vocabulary using another vocabulary. Optionally a predicate can be given to filter vocabularies.
Note 1: `corpuslen` remains unchanged (the structure is immutable and a new `Vocabulary` should be created to update this field).
Note 2: Both `voc` and `another` vocabularies should had been created with a _compatible_ [`Textconfig`](@ref) to be able to work on them.
Note 2: Both `voc` and `another` vocabularies should had been created with a _compatible_ [`TextConfig`](@ref) to be able to work on them.
"""
update_voc!(voc::Vocabulary, another::Vocabulary) = update_voc!(t->true, voc, another)

Expand Down Expand Up @@ -60,7 +60,7 @@ end
Merges two or more vocabularies into a new one. A predicate function can be used to filter token entries.
Note: All vocabularies should had been created with a _compatible_ [`Textconfig`](@ref) to be able to work on them.
Note: All vocabularies should had been created with a _compatible_ [`TextConfig`](@ref) to be able to work on them.
"""
merge_voc(voc1::Vocabulary, voc2::Vocabulary, voclist...) = merge_voc(x->true, voc1, voc2, voclist...)

Expand Down

2 comments on commit a2bafb2

@sadit
Copy link
Owner Author

@sadit sadit commented on a2bafb2 Sep 22, 2023

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 created: JuliaRegistries/General/92014

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.17.0 -m "<description of version>" a2bafb2a84a1b05c8b28ffeb611eae9ad0d730de
git push origin v0.17.0

Please sign in to comment.