added missing modifier

This commit is contained in:
Georgios Samaras 2016-02-15 12:26:33 +01:00
parent 9674db7849
commit e895e60431

View File

@ -36,9 +36,9 @@ snippet let "let variable declaration with type inference"
snippet lett "let variable declaration with explicit type annotation"
let ${1}: ${2} = ${3};
snippet letm "let mut variable declaration with type inference"
let ${1} = ${2};
let mut ${1} = ${2};
snippet lettm "let mut variable declaration with explicit type annotation"
let ${1}: ${2} = ${3};
let mut ${1}: ${2} = ${3};
snippet pln "println!"
println!("${1}");
snippet pln, "println! with format param"