Merge pull request #156 from jenkinsci/jenkins-30911-readme-fix
Clean up the change-executors example in the README
diff --git a/README.md b/README.md
index 3523033..f3bd481 100644
--- a/README.md
+++ b/README.md
@@ -50,8 +50,9 @@
You can specify and set the number of executors of your Jenkins master instance using a groovy script. By default its set to 2 executors, but you can extend the image and change it to your desired number of executors :
+`executors.groovy`
```
-# executors.groovy
+import jenkins.model.*
Jenkins.instance.setNumExecutors(5)
```