Skip to content

Commit 8b83e0f

Browse files
committed
fix: match latest ltk_meta
1 parent bad6a5b commit 8b83e0f

File tree

2 files changed

+89
-103
lines changed

2 files changed

+89
-103
lines changed

crates/ltk_ritobin/src/typecheck/name_ext.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
use ltk_meta::BinPropertyKind;
1+
use ltk_meta::PropertyKind;
22

33
pub trait RitobinName: Sized {
44
fn from_ritobin_name(name: &str) -> Option<Self>;
55
fn to_ritobin_name(self) -> &'static str;
66
}
77

8-
impl RitobinName for BinPropertyKind {
8+
impl RitobinName for PropertyKind {
99
fn from_ritobin_name(name: &str) -> Option<Self> {
1010
match name {
1111
"none" => Some(Self::None),

0 commit comments

Comments
 (0)