Fix Subject.associateWith() examples
diff --git a/subject.md.vtl b/subject.md.vtl
index 6a03ceb..3bbbdc0 100644
--- a/subject.md.vtl
+++ b/subject.md.vtl
@@ -301,7 +301,7 @@
 Callable work = //build/acquire a Callable instance. 
 //associate the work with the built subject so SecurityUtils.getSubject() calls works properly: 
 work = subject.associateWith(work);
-ExecutorService executorService = new java.util.concurrent.Executors.newCachedThreadPool();
+ExecutorService executor = java.util.concurrent.Executors.newCachedThreadPool();
 //execute the work on a different thread as the built Subject: 
 executor.execute(work);
 ```
@@ -313,8 +313,9 @@
 Runnable work = //build/acquire a Runnable instance. 
 //associate the work with the built subject so SecurityUtils.getSubject() calls works properly: 
 work = subject.associateWith(work);
-Executor executor = new java.util.concurrent.Executors.newCachedThreadPool();
-//execute the work on a different thread as the built Subject: executor.execute(work);
+ExecutorService executor = java.util.concurrent.Executors.newCachedThreadPool();
+//execute the work on a different thread as the built Subject:
+executor.execute(work);
 ```
 
 #tip('Automatic Cleanup', 'The <code>associateWith</code>* methods perform necessary thread cleanup automatically to ensure threads remain clean in a pooled environment.')