aboutsummaryrefslogtreecommitdiff
path: root/src/makefile/token.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/makefile/token.rs')
-rw-r--r--src/makefile/token.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefile/token.rs b/src/makefile/token.rs
index 85d2e96..16403ff 100644
--- a/src/makefile/token.rs
+++ b/src/makefile/token.rs
@@ -276,7 +276,7 @@ mod test {
impl From<Vec<Token>> for TokenString {
fn from(x: Vec<Token>) -> Self {
- TokenString(x)
+ Self(x)
}
}