1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-06 14:56:54 +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 * Includes