Skip to content

Commit 3cad6d5

Browse files
committed
Fix keyword.intern_with_ns -- ns and name were backwards
1 parent 85a364f commit 3cad6d5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/keyword.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ impl Keyword {
2121
// Clojure proper has
2222
pub fn intern_with_ns(ns: &str, name: &str) -> Keyword {
2323
Keyword {
24-
sym: Symbol::intern_with_ns(name, ns),
24+
sym: Symbol::intern_with_ns(ns, name),
2525
}
2626
}
2727
}

0 commit comments

Comments
 (0)