website: Updated home page example to exclude unnecessary variable for Environment.SpecialFolder enumeration value
diff --git a/websites/site/lucenetemplate/partials/home-quick-start.tmpl.partial b/websites/site/lucenetemplate/partials/home-quick-start.tmpl.partial
index 6bcead6..8e9bc40 100644
--- a/websites/site/lucenetemplate/partials/home-quick-start.tmpl.partial
+++ b/websites/site/lucenetemplate/partials/home-quick-start.tmpl.partial
@@ -5,12 +5,12 @@
 <p class="text-center">Create an index and define a text analyzer</p>
 <pre class="clean">
 <code class="csharp">
-// Ensures index backwards compatibility
+// Ensures index backward compatibility
 const LuceneVersion AppLuceneVersion = LuceneVersion.LUCENE_48;
 
 // Construct a machine-independent path for the index
-var appDataFolder = Environment.SpecialFolder.CommonApplicationData;
-var basePath = Environment.GetFolderPath(appDataFolder);
+var basePath = Environment.GetFolderPath(
+    Environment.SpecialFolder.CommonApplicationData);
 var indexPath = Path.Combine(basePath, "index");
 
 using var dir = FSDirectory.Open(indexPath);