Skip to content

Commit

Permalink
Update variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Mar 23, 2024
1 parent d559b14 commit c730109
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/fj-core/src/layers/layers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ pub struct Layers {
impl Layers {
/// Construct an instance of `Layers`
pub fn new() -> Self {
let objects = Topology::new();
let geometry = Geometry::new(&objects);
let topology = Topology::new();
let geometry = Geometry::new(&topology);

Self {
topology: Layer::new(objects),
topology: Layer::new(topology),
geometry: Layer::new(geometry),
validation: Layer::default(),
presentation: Layer::default(),
Expand Down

0 comments on commit c730109

Please sign in to comment.