Skip to content

Commit

Permalink
Fix clipy suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
anergictcell committed Jun 10, 2024
1 parent b704db8 commit 6ae1a83
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/similarity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -446,9 +446,9 @@ impl Default for GroupSimilarity<GraphIc, StandardCombiner> {
pub enum Builtins {
/// [Distance](`Distance`) - based similarity
Distance(InformationContentKind),
/// [GraphIc](`GraphIc`) - based similarity
/// [`GraphIc`](`GraphIc`) - based similarity
GraphIc(InformationContentKind),
/// [InformationCoefficient](`InformationCoefficient`) - based similarity
/// [`InformationCoefficient`](`InformationCoefficient`) - based similarity
InformationCoefficient(InformationContentKind),
/// [Jiang & Conrath](`Jc`) - based similarity
Jc(InformationContentKind),
Expand Down
4 changes: 2 additions & 2 deletions src/stats.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ impl<T: AnnotationId> Enrichment<T> {
}

struct SampleSet<T> {
/// The total number of HpoTerms in the full set
/// The total number of `HpoTerms` in the full set
size: u64,
/// A map containing the counts of each Gene/Disease in the SampleSet
/// A map containing the counts of each Gene/Disease in the `SampleSet`
counts: HashMap<u32, u64>,
phantom: PhantomData<T>,
}
Expand Down

0 comments on commit 6ae1a83

Please sign in to comment.