Skip to content

Commit b9fd144

Browse files
committed
Fix typo and commit Cargo.lock
1 parent cbf6549 commit b9fd144

2 files changed

Lines changed: 15 additions & 15 deletions

File tree

charon/Cargo.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charon/src/ast/types.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use crate::ids::Vector;
22
use crate::{ast::*, common::hash_consing::HashConsed};
3-
use derive_where::derive_where;
43
use derive_visitor::{Drive, DriveMut, Event, Visitor, VisitorMut};
4+
use derive_where::derive_where;
55
use macros::{EnumAsGetters, EnumIsA, EnumToGetters, VariantIndexArity, VariantName};
66
use serde::{Deserialize, Serialize};
77

@@ -354,11 +354,11 @@ pub struct TraitClause {
354354
/// to specific where clauses when the selected trait actually is linked
355355
/// to a parameter.
356356
pub clause_id: TraitClauseId,
357-
#[drive_where(skip)]
357+
#[derive_where(skip)]
358358
// TODO: does not need to be an option.
359359
pub span: Option<Span>,
360360
/// Where the predicate was written, relative to the item that requires it.
361-
#[drive_where(skip)]
361+
#[derive_where(skip)]
362362
#[charon::opaque]
363363
pub origin: PredicateOrigin,
364364
/// The trait that is implemented.

0 commit comments

Comments
 (0)