Skip to content

Commit 2b5630a

Browse files
Rename SERIES to CONVENTION
1 parent add19fd commit 2b5630a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/lox_core/src/marked_bodies.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ use std::marker::PhantomData;
1212
struct IERS2003;
1313
struct MHB2000;
1414

15-
struct Moon<SERIES> {
15+
struct Moon<C> {
1616
/// Phantom data has no runtime representation, so the struct is still zero-sized.
17-
_series: PhantomData<SERIES>,
17+
_convention: PhantomData<C>,
1818
}
1919

2020
trait MeanLongitudeOfAscendingNode {
@@ -39,7 +39,7 @@ impl MeanLongitudeOfAscendingNode for Moon<MHB2000> {
3939
impl Default for Moon<T> {
4040
fn default() -> Self {
4141
Self {
42-
_series: PhantomData,
42+
_convention: PhantomData,
4343
}
4444
}
4545
}

0 commit comments

Comments
 (0)