Skip to content
This repository has been archived by the owner on Feb 17, 2023. It is now read-only.

Commit

Permalink
Fix error[E0507]
Browse files Browse the repository at this point in the history
  • Loading branch information
martial-plains committed Oct 15, 2022
1 parent 78111d6 commit f3b6c9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/natural_language/nl_tagger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ pub mod nl_tag {
}

/// Constants for linguistic tagger enumeration specifying which tokens to omit and whether to join names.
#[derive(Debug)]
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Clone, Copy)]
#[repr(u64)]
pub enum NLTaggerOptions {
/// Omit tokens of type word (items considered to be words).
Expand Down

0 comments on commit f3b6c9a

Please sign in to comment.