diff --git a/README.md b/README.md index 91a6f4e..e7e6a9e 100644 --- a/README.md +++ b/README.md @@ -22,11 +22,10 @@ import ( func main() { engine, _ := php.New() - context, _ := php.NewContext(os.Stdout) + context, _ := engine.NewContext(os.Stdout) context.Exec("index.php") - context.Destroy() engine.Destroy() } ```