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 ```nix
let let
a = 1; a = "1";
in in
"the value of a is ${a}" # 结果是 "the value of a is 1" "the value of a is ${a}" # 结果是 "the value of a is 1"
``` ```