1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-07-30 19:40:36 +02:00

Add a missing semi-colon (#2572)

Add a missing semi-colon at Line 470
This commit is contained in:
Chung-Ping Huang
2016-11-16 14:49:32 +08:00
committed by samcv
parent 809e5d20a9
commit ebc70fe289

View File

@@ -467,7 +467,7 @@ function variable($word, ...$list) {
}
}
variable("Separate", "Hello", "World") // Separate || Hello | World |
variable("Separate", "Hello", "World"); // Separate || Hello | World |
/********************************
* Includes