Skip to content

Commit bdb5016

Browse files
committed
0.1.55
1 parent c7436ae commit bdb5016

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lambdascript"
3-
version = "0.1.54"
3+
version = "0.1.55"
44
authors = ["Chuck Liang"]
55
edition = "2021"
66
license = "MIT"
@@ -12,6 +12,6 @@ categories = ["command-line-utilities", "parsing", "mathematics"]
1212

1313
[dependencies]
1414
rustlr = "0.4"
15-
fixedstr = "0.3"
15+
fixedstr = "0.5"
1616
#chrono = "0.4"
1717
#curl = "0.4.44"

src/untyped.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ impl BetaReducer {
105105
pub fn newvar(&mut self, x: &str16) -> str16 {
106106
self.cx += 1;
107107
let xs = format!("{}{}", x, self.cx);
108-
return str16::from(xs);
108+
return str16::from(&xs);
109109
}
110110

111111
// alpha-convert t apart from free vars in alpha-map.

0 commit comments

Comments
 (0)