fix: can not use integer in string interpolation

This commit is contained in:
Ryan Yin 2023-07-06 19:25:52 +08:00
parent 44945b786d
commit e8edb773ba

View file

@ -179,7 +179,7 @@ in
```nix
let
a = 1;
a = "1";
in
"the value of a is ${a}" # 结果是 "the value of a is 1"
```