From 0c5c6675a44610fd073cbb6f0e4f44c54fb13916 Mon Sep 17 00:00:00 2001 From: Alex Palaistras Date: Tue, 22 Sep 2015 22:07:26 +0100 Subject: [PATCH] Fix incorrect reference in README. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5a4347f..93e0c11 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ func main() { } ``` -The above will execute script file located in `src/index.php` and write any output to the `io.Writer` passed to `engine.NewContext`. +The above will execute script file located in `index.php` and write any output to the `io.Writer` passed to `engine.NewContext` (in this case, the standard output). By executing the PHP context in a goroutine, one can read from the writer as the output is generated by the script, and is useful for long-running scripts which output information during execution.