diff --git a/_tour/basics.md b/_tour/basics.md index 37510230f7..c960103de1 100644 --- a/_tour/basics.md +++ b/_tour/basics.md @@ -153,7 +153,7 @@ println(addThenMultiply(1, 2)(3)) // 9 Or no parameter lists at all. ```tut -def name: String = System.getProperty("name") +def name: String = System.getProperty("user.name") println("Hello, " + name + "!") ```