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.