diff --git a/src/gui/Encyclopedia/enclyopediaSlaveModification.js b/src/gui/Encyclopedia/encyclopediaSlaveModification.js
similarity index 62%
rename from src/gui/Encyclopedia/enclyopediaSlaveModification.js
rename to src/gui/Encyclopedia/encyclopediaSlaveModification.js
index 0a7507548a3b70be022a4a8a0bf6924d9e7b2baa..b6606e2bc96f34cea81a550d8dbe6d44f612ec95 100644
--- a/src/gui/Encyclopedia/enclyopediaSlaveModification.js
+++ b/src/gui/Encyclopedia/encyclopediaSlaveModification.js
@@ -1,49 +1,49 @@
 App.Encyclopedia.addArticle("Slave Modification", function() {
- const t = new DocumentFragment();
- const r = new SpacedTextAccumulator(t);
- r.push("What would a slaveowner be without the ability to customize their slaves' bodies?");
- r.push("The Free Cities offer a variety of ways to achieve this for an arcology owner.");
- r.push("Choose a more particular entry below:");
- r.toNode("div");
- return t;
+	const t = new DocumentFragment();
+	const r = new SpacedTextAccumulator(t);
+	r.push("What would a slaveowner be without the ability to customize their slaves' bodies?");
+	r.push("The Free Cities offer a variety of ways to achieve this for an arcology owner.");
+	r.push("Choose a more particular entry below:");
+	r.toNode("div");
+	return t;
 }, "slaveModification");
 
 App.Encyclopedia.addArticle("Corrective Diet", function() {
- return App.UI.DOM.makeElement("div", "Using the upgraded kitchen to monitor a slave's caloric intake allows for diets to be tailored to slowly increase or decrease their weight without them realizing.");
+	return App.UI.DOM.makeElement("div", "Using the upgraded kitchen to monitor a slave's caloric intake allows for diets to be tailored to slowly increase or decrease their weight without them realizing.");
 }, "slaveModification");
 
 App.Encyclopedia.addArticle("Nipple Conversion — Penetratable", function() {
 	const t = new DocumentFragment();
- const r = new SpacedTextAccumulator(t);
- r.push("By taking extremely large nipples and inverting them into an adequately sized breast, it is possible to use an advanced surgical suite to create a cavity suitable for penetration.");
- r.push("Early attempts found that the novelty of fucking a tit did not offset the discomfort of ramming one's dick into a solid object and as such, the surgery is only applicable to slaves with at least 500ccs of breast tissue per boob.");
- r.push("Milk production is unhindered by the alterations, though non-machine milking is far more difficult without a nipple to grab and it is unlikely to be able to properly nourish a child.");
- r.push("Arousal is also expressed differently, as the nipple cannot stiffen any longer; instead, engorgement causes the newly crafted passage to tighten, adding to the pleasure of using the unorthodox hole.");
- r.push("While looseness is no issue, and the orifice quite capable of stretching around an intruding shaft, depth can become a problem; even the most average of slaveowners will find themselves bottoming out far sooner than they would like.");
- r.push("Fortunately, this downside is offset by the novelty of the act and the capacity to push the nipple itself deeper into the slave's breast to better accommodate one's cock.");
- r.push("In this case, bigger really is better.");
- r.toNode("div");
+	const r = new SpacedTextAccumulator(t);
+	r.push("By taking extremely large nipples and inverting them into an adequately sized breast, it is possible to use an advanced surgical suite to create a cavity suitable for penetration.");
+	r.push("Early attempts found that the novelty of fucking a tit did not offset the discomfort of ramming one's dick into a solid object and as such, the surgery is only applicable to slaves with at least 500ccs of breast tissue per boob.");
+	r.push("Milk production is unhindered by the alterations, though non-machine milking is far more difficult without a nipple to grab and it is unlikely to be able to properly nourish a child.");
+	r.push("Arousal is also expressed differently, as the nipple cannot stiffen any longer; instead, engorgement causes the newly crafted passage to tighten, adding to the pleasure of using the unorthodox hole.");
+	r.push("While looseness is no issue, and the orifice quite capable of stretching around an intruding shaft, depth can become a problem; even the most average of slaveowners will find themselves bottoming out far sooner than they would like.");
+	r.push("Fortunately, this downside is offset by the novelty of the act and the capacity to push the nipple itself deeper into the slave's breast to better accommodate one's cock.");
+	r.push("In this case, bigger really is better.");
+	r.toNode("div");
 	return t;
 }, "slaveModification");
 
 App.Encyclopedia.addArticle("Ejaculation Boosting Prostate Implant", function() {
 	const t = new DocumentFragment();
- const r = new SpacedTextAccumulator(t);
- r.push("An additional prostate implant designed to hyperstimulate one's prostate and store the resulting fluid for release during ejaculation in a specialized reservoir."); 
- r.push("An easy way to tell if the precum soaked slave you are fucking is sporting this implant is the distinct swelling in her lower belly as she nears release.");
- r.push("Due to the sheer amount of prostate fluid released, sperm per volume is greatly reduced, devastating profits of those looking to sell cum.");
- r.push("Remember to keep your slaves well hydrated!");
- r.toNode("div");
+	const r = new SpacedTextAccumulator(t);
+	r.push("An additional prostate implant designed to hyperstimulate one's prostate and store the resulting fluid for release during ejaculation in a specialized reservoir."); 
+	r.push("An easy way to tell if the precum soaked slave you are fucking is sporting this implant is the distinct swelling in her lower belly as she nears release.");
+	r.push("Due to the sheer amount of prostate fluid released, sperm per volume is greatly reduced, devastating profits of those looking to sell cum.");
+	r.push("Remember to keep your slaves well hydrated!");
+	r.toNode("div");
 	return t;
 }, "slaveModification");
 
 App.Encyclopedia.addCategory("slaveModification", function() {
 	const links = [];
- if (V.encyclopedia !== "Slave Modification") {
-  links.push(App.Encyclopedia.Dialog.linkDOM("Slave Modification"));
- }
+	if (V.encyclopedia !== "Slave Modification") {
+		links.push(App.Encyclopedia.Dialog.linkDOM("Slave Modification"));
+	}
 	links.push(App.Encyclopedia.Dialog.linkDOM("Corrective Diet"));
 	links.push(App.Encyclopedia.Dialog.linkDOM("Nipple Conversion — Penetratable"));
- links.push(App.Encyclopedia.Dialog.linkDOM("Ejaculation Boosting Prostate Implant"));
+	links.push(App.Encyclopedia.Dialog.linkDOM("Ejaculation Boosting Prostate Implant"));
 	return App.UI.DOM.generateLinksStrip(links);
 });