Commit dfa5498a0b507c429c49eed4c415f5275decfa53

Anders D. Johnson 2020-07-03T12:40:39

Website: Fixed typos "Prims" (#2455)

diff --git a/docs/styles/overwrites.css b/docs/styles/overwrites.css
index 64d1221..37596f1 100644
--- a/docs/styles/overwrites.css
+++ b/docs/styles/overwrites.css
@@ -1,7 +1,7 @@
 /*
  * This file contains specific fixes and changes from some parts of the theme.
  *
- * This file is part of Prims and not of the theme!
+ * This file is part of Prism and not of the theme!
  */
 
 pre.prettyprint > ol.linenums {
diff --git a/extending.html b/extending.html
index 532dd43..6005a6e 100644
--- a/extending.html
+++ b/extending.html
@@ -271,7 +271,7 @@ Brief description.</code></pre>
 		</dd>
 		<dt><code>optional</code></dt>
 		<dd>
-			Prims will ensure that an optional dependee is loaded before the depender if the dependee is loaded. Unlike <code>require</code> dependencies which also guarantee that the dependees are loaded, <code>optional</code> dependencies only guarantee the order of loaded components. <br>
+			Prism will ensure that an optional dependee is loaded before the depender if the dependee is loaded. Unlike <code>require</code> dependencies which also guarantee that the dependees are loaded, <code>optional</code> dependencies only guarantee the order of loaded components. <br>
 			You are <strong>not</strong> allowed to modify the dependees. If you need to modify the optional dependee, declare it as <code>modify</code> instead.
 
 			<p>This kind of dependency is useful if you have embedded languages but you want to give the users a choice as to whether they want to include the embedded language. By using <code>optional</code> dependencies, users can better control the bundle size of Prism by only including the languages they need.<br>