diff --git a/src/init/setupVars.tw b/src/init/setupVars.tw
index 7b5bf63b6f0b1fe4902fc7515a57adb111dc6059..d291b9bdc0d57696ade16c2f469f03f9a1378164 100644
--- a/src/init/setupVars.tw
+++ b/src/init/setupVars.tw
@@ -267,7 +267,7 @@
 
 <<set setup.pettyCriminalPool = ["robbery", "armed robbery", "murder", "arson", "burglary", "cat burglar", "petty theft", "theft", "pickpocketing", "manslaughter", "blackmail", "assault", "battery", "tax evasion", "rape", "child molestation", "child abuse", "domestic abuse", "illegal immigrant", "mule"]>>
 
-<<set setup.gangCriminalPool = ["mule", "arms smuggler", "drug smuggler", "smuggler", "fence", "gang murderer", "gang assulter", "gang bruiser", "gang theif", "drug peddler", "hitman", "assassin", "murder", "manslaughter", "attempted murder"]>>
+<<set setup.gangCriminalPool = ["mule", "arms smuggler", "drug smuggler", "smuggler", "fence", "gang murderer", "gang assulter", "gang bruiser", "gang thief", "drug peddler", "hitman", "assassin", "murder", "manslaughter", "attempted murder"]>>
 
 <<set setup.whiteCollarCriminalPool = ["racketeering", "bribery", "blackmail", "embezzlement", "fraud", "tax evasion", "malpractice", "abuse of power"]>>
 
diff --git a/src/js/dTree.min.tw b/src/js/dTree.min.tw
index e423182a0cd91f4ceb75c13b748e267719531a9a..0338634d37402e3d1f61486acc658ac3725df6d4 100644
--- a/src/js/dTree.min.tw
+++ b/src/js/dTree.min.tw
@@ -150,4 +150,3 @@ this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this.
 
 function _classCallCheck(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var _createClass=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}();!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.dTree=t()}(this,function(){"use strict";var e=function(){function e(t,n,r){_classCallCheck(this,e),e.DEBUG_LEVEL=r.debug?1:0,this.root=t,this.siblings=n,this.opts=r,this.allNodes=this._flatten(this.root);var a=_.filter(this.allNodes,function(e){return!e.hidden});this.nodeSize=r.callbacks.nodeSize(a,r.nodeWidth,r.callbacks.textRenderer)}return _createClass(e,[{key:"create",value:function(){var e=this.opts,t=(this.allNodes,this.nodeSize),n=e.width+e.margin.left+e.margin.right,r=e.height+e.margin.top+e.margin.bottom,a=d3.zoom().scaleExtent([.1,10]).on("zoom",function(){i.attr("transform",d3.event.transform.translate(n/2,0))}),i=this.svg=d3.select(e.target).append("svg").attr("width",n).attr("height",r).call(a).append("g").attr("transform","translate("+n/2+",0)");this.tree=d3.tree().nodeSize([2*t[0],2.5*t[1]]),this.tree.separation(function(e,t){return e.data.hidden||t.data.hidden?.3:.6}),this._update(this.root)}},{key:"_update",value:function(e){var t=this.opts,n=(this.allNodes,this.nodeSize),r=this.tree(e),a=r.links();this.svg.selectAll(".link").data(a).enter().filter(function(e){return!e.target.data.noParent}).append("path").attr("class",t.styles.linage).attr("d",this._elbow);var i=this.svg.selectAll(".node").data(r.descendants()).enter();this._linkSiblings(),this.svg.selectAll(".sibling").data(this.siblings).enter().append("path").attr("class",t.styles.marriage).attr("d",_.bind(this._siblingLine,this)),i.append("foreignObject").filter(function(e){return!e.data.hidden}).attr("x",function(e){return e.x-e.cWidth/2+"px"}).attr("y",function(e){return e.y-e.cHeight/2+"px"}).attr("width",function(e){return e.cWidth+"px"}).attr("height",function(e){return e.cHeight+"px"}).attr("id",function(e){return e.id}).html(function(e){return t.callbacks.nodeRenderer(e.data.name,e.x,e.y,n[0],n[1],e.data.extra,e.data.id,e.data["class"],e.data.textClass,t.callbacks.textRenderer)}).on("click",function(e){e.data.hidden||t.callbacks.nodeClick(e.data.name,e.data.extra,e.data.id)})}},{key:"_flatten",value:function(e){function t(e){e.children&&e.children.forEach(t),e.id||(e.id=++r),n.push(e)}var n=[],r=0;return t(e),n}},{key:"_elbow",value:function(e,t){if(e.target.data.noParent)return"M0,0L0,0";var n=e.target.y+.5*(e.source.y-e.target.y),r=[{x:e.target.x,y:e.target.y},{x:e.target.x,y:n},{x:e.source.x,y:e.source.y}],a=d3.line().curve(d3.curveStepAfter).x(function(e){return e.x}).y(function(e){return e.y});return a(r)}},{key:"_linkSiblings",value:function(){var e=this.allNodes;_.forEach(this.siblings,function(t){var n=e.filter(function(e){return t.source.id==e.data.id}),r=e.filter(function(e){return t.target.id==e.data.id});t.source.x=n[0].x,t.source.y=n[0].y,t.target.x=r[0].x,t.target.y=r[0].y})}},{key:"_siblingLine",value:function(e,t){var n=e.target.y+.5*(e.source.y-e.target.y),r=this.nodeSize[0],a=this.nodeSize[1];e.number>0&&(n-=8*a/10);var i=[{x:e.source.x,y:e.source.y},{x:e.source.x+6*r/10,y:e.source.y},{x:e.source.x+6*r/10,y:n},{x:e.target.x-6*r/10,y:n},{x:e.target.x-6*r/10,y:e.target.y},{x:e.target.x,y:e.target.y}],s=d3.line().curve(d3.curveStepAfter).x(function(e){return e.x}).y(function(e){return e.y});return s(i)}}],[{key:"_nodeSize",value:function(e,t,n){var r=0,a=document.createElement("svg");return document.body.appendChild(a),_.map(e,function(e){var i=document.createElement("div");i.setAttribute("class",e.data["class"]),i.style.visibility="hidden",i.style.maxWidth=t+"px";var s=n(e.data.name,e.data.extra,e.data.textClass);i.innerHTML=s,a.appendChild(i);var o=16;a.removeChild(i),r=Math.max(r,o),e.cHeight=o,e.cWidth=t}),document.body.removeChild(a),[t,r]}},{key:"_nodeRenderer",value:function(e,t,n,r,a,i,s,o,d,c){var l="";return l+="<div ",l+='style="height:100%;width:100%;" ',l+='class="'+o+'" ',l+='id="node'+s+'">\n',l+=c(e,i,d),l+="</div>"}},{key:"_textRenderer",value:function(e,t,n){var r="";return r+="<p ",r+='align="center" ',r+='class="'+n+'">\n',r+=e,r+="</p>\n"}},{key:"_debug",value:function(t){e.DEBUG_LEVEL>0&&console.log(t)}}]),e}(),t={VERSION:"2.0.1",init:function(t){var n=arguments.length<=1||void 0===arguments[1]?{}:arguments[1],r=_.defaultsDeep(n||{},{target:"#graph",debug:!1,width:600,height:600,callbacks:{nodeClick:function(e,t,n){},nodeRenderer:function(t,n,r,a,i,s,o,d,c,l){return e._nodeRenderer(t,n,r,a,i,s,o,d,c,l)},nodeSize:function(t,n,r){return e._nodeSize(t,n,r)},nodeSorter:function(e,t,n,r){return 0},textRenderer:function(t,n,r){return e._textRenderer(t,n,r)}},margin:{top:0,right:0,bottom:0,left:0},nodeWidth:100,styles:{node:"node",linage:"linage",marriage:"marriage",text:"nodeText"}}),t=this._preprocess(t,r),a=new e(t.root,t.siblings,r);a.create()},_preprocess:function(e,n){var r=[],a=0,i={name:"",id:a++,hidden:!0,children:[]},s=function o(e,s){var d={name:e.name,id:a++,hidden:!1,children:[],extra:e.extra,textClass:e.textClass?e.textClass:n.styles.text,"class":e["class"]?e["class"]:n.styles.node};s==i&&(d.noParent=!0);for(var c=0;c<e.depthOffset;c++){var l={name:"",id:a++,hidden:!0,children:[],noParent:d.noParent};s.children.push(l),s=l}t._sortPersons(e.children,n),_.forEach(e.children,function(e){o(e,d)}),s.children.push(d),t._sortMarriages(e.marriages,n),_.forEach(e.marriages,function(e,i){var c={name:"",id:a++,hidden:!0,noParent:!0,children:[],extra:e.extra},l=e.spouse,u={name:l.name,id:a++,hidden:!1,noParent:!0,children:[],textClass:l.textClass?l.textClass:n.styles.text,"class":l["class"]?l["class"]:n.styles.node,extra:l.extra};s.children.push(c,u),t._sortPersons(e.children,n),_.forEach(e.children,function(e){o(e,c)}),r.push({source:{id:d.id},target:{id:u.id},number:i})})};return _.forEach(e,function(e){s(e,i)}),{root:d3.hierarchy(i),siblings:r}},_sortPersons:function(e,t){return void 0!=e&&e.sort(function(e,n){return t.callbacks.nodeSorter(e.name,e.extra,n.name,n.extra)}),e},_sortMarriages:function(e,t){return void 0!=e&&Array.isArray(e)&&e.sort(function(e,n){var r=e.spouse,a=n.spouse;return t.callbacks.nodeSorter(r.name,r.extra,a.name,a.extra)}),e}};return t});
 }).call(window,window)
-
diff --git a/src/js/hTagMacroJS.tw b/src/js/hTagMacroJS.tw
index 9a8f8cac6a40b72cdaff7712be0601065906e96f..4678c57730faaefc00683060b51fe5d9b94d9907 100644
--- a/src/js/hTagMacroJS.tw
+++ b/src/js/hTagMacroJS.tw
@@ -11,8 +11,8 @@
  *
  * Usage: <<htag id>>...<</htag>>    
  * Usage: <<htag id tag>>...<</htag>>    
- * Usage: <<htag atributes>>...<</htag>>    
- * Usage: <<htag atributes tag>>...<</htag>>    
+ * Usage: <<htag attributes>>...<</htag>>    
+ * Usage: <<htag attributes tag>>...<</htag>>    
  */
 Macro.add('htag', {
 	tags: null,
diff --git a/src/js/rulesAssistantOptions.tw b/src/js/rulesAssistantOptions.tw
index 174185ad0d8c53060075782580553550b57f4097..20efeb2f4ce44e61478e92e5316272ab7b79de14 100644
--- a/src/js/rulesAssistantOptions.tw
+++ b/src/js/rulesAssistantOptions.tw
@@ -1,7 +1,7 @@
 :: Rules Assistant Options [script]
 // rewrite of the rules assistant options page in javascript
 // uses an object-oriented widget pattern
-// wrapped in a closure so as not to polute the global namespace
+// wrapped in a closure so as not to pollute the global namespace
 // the widgets are generic enough to be reusable; if similar user interfaces are ported to JS, we could move the classes to the global scope
 
 window.rulesAssistantOptions = (function() {
diff --git a/src/js/wombJS.tw b/src/js/wombJS.tw
index 134ddea6cfe46358bcbd805a4b6ca0fa9a6c4006..412282dc17cef3048cb9c6f86d8265db17338531 100644
--- a/src/js/wombJS.tw
+++ b/src/js/wombJS.tw
@@ -276,7 +276,7 @@ window.WombZeroID = function(actor, id) {
 	WombNormalizePreg(actor);
 };
 
-/* Sorts the womb object by age with oldest and thus soonest to be born, first. This will be needed in the future once individual fertilization is a possiblity.*/
+/* Sorts the womb object by age with oldest and thus soonest to be born, first. This will be needed in the future once individual fertilization is a possibility.*/
 window.WombSort = function(actor) {
 	actor.womb.sort((a, b) => { return b.age - a.age; });
 };
diff --git a/src/pregmod/fPat.tw b/src/pregmod/fPat.tw
index a6097f4c02ea93285526e0ba3da104523aa2b75e..923773fb57ef8f1e5b58bad7e2318355648d2107 100644
--- a/src/pregmod/fPat.tw
+++ b/src/pregmod/fPat.tw
@@ -170,7 +170,7 @@ face and lightly touch $his
 <</if>>
 with your fingertips. You move your hand to the side of your slave's head, stroking $his temple gently.
 <<if $activeSlave.fetish == "mindbroken">>
-  This causes an unconcious shiver to travel down $his spine.
+  This causes an unconscious shiver to travel down $his spine.
 <<elseif $activeSlave.devotion >= 50>>
 	This causes $him to shudder in delight and to move $his hand to your hip, squeezing it gently.
 <<elseif $activeSlave.devotion >= 20>>
diff --git a/src/pregmod/saPorn.tw b/src/pregmod/saPorn.tw
index d4f51ffeffd8585f7288382aee435a1aaeb35a80..5627fcc1d0c3a83846633b288233ed709aa44fb1 100644
--- a/src/pregmod/saPorn.tw
+++ b/src/pregmod/saPorn.tw
@@ -1041,7 +1041,7 @@
 			$He @@.yellow;has accrued enough views to determine prospective porn genres.@@
 		<</if>>
 	<<elseif $slaves[$i].pornFame != 0>>
-		Surprisingly, $his online fame @@.yellow;remained consistant@@ this week despite how fickle watchers can be.
+		Surprisingly, $his online fame @@.yellow;remained consistent@@ this week despite how fickle watchers can be.
 	<<else>>
 		$he cap went @@.red;completely overlooked@@ this week and failed to gain any hits at all.
 	<</if>>
@@ -2006,7 +2006,7 @@
 				<<set $slaves[$i].pornFame = $slaves[$i].pornTypeDom>>
 				<<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with her dominant streak.">>
 				@@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $his dominant streak, so it is now extremely prestigious to own $him.
-				<<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her seated upon her obediant toy">>
+				<<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her seated upon her obedient toy">>
 				<<set $trinkets.push(_desc)>>
 			<<elseif $slaves[$i].pornTypeDom < 40000>>
 				<<set _failedStar = 1>>
diff --git a/src/pregmod/sePlayerBirth.tw b/src/pregmod/sePlayerBirth.tw
index 4d3d6d10745110342abbd75492d24ef7c10e015a..7f3f7f9a0cec1e312f179b02a5436961dbde76bb 100644
--- a/src/pregmod/sePlayerBirth.tw
+++ b/src/pregmod/sePlayerBirth.tw
@@ -443,7 +443,7 @@ You arrange yourself to give birth, relaxing until your body urges you to begin
 	<<set _identicalChildGen = 0, _shiftDegree = 0>>
 	<<for _p = 0; _p < _curBabies; _p++>>
 		<<if _identicalChildGen == 0>>
-			<<if _p == $PC.curBabies.length-1 && $PC.curBabies.length > 1 && $PC.curBabies[_p].identical == 1>> /* catch for improperly placed indentical twin flag to still generate*/
+			<<if _p == $PC.curBabies.length-1 && $PC.curBabies.length > 1 && $PC.curBabies[_p].identical == 1>> /* catch for improperly placed identical twin flag to still generate*/
 				<<set _twin = clone($activeSlave)>>
 				<<set _twin.ID = $IDNumber++>>
 				<<set $activeSlave = 0>>
diff --git a/src/pregmod/theBlackMarket.tw b/src/pregmod/theBlackMarket.tw
index e592ae23a431d0b7a681450c8482af1c4b164191..400fc12cc62dff459e0a25739679912da0268d08 100644
--- a/src/pregmod/theBlackMarket.tw
+++ b/src/pregmod/theBlackMarket.tw
@@ -169,7 +169,7 @@ Of all the wonders present, the thing that catches your eye the most is a shady
 										<<if ($pedo_mode)>>
 												<<set _toydolls = "If you like sexy little toy dolls, I mean biological ''@@.coral;lolis@@'' or ''@@.coral;shotas@@'' for life, then this is the one for you. I picked it up from an exotics dealer, who picked it up from some old world government research center.", _norefunds = "Remember, though, no money back on this. Technology like this doesn't exist anywhere else, your younger slaves will stay that way forever, and your older ones will slowly begin to regress towards that nice mid-childhood state. If you want to build yourself a cadre of ''@@.coral;preteen@@'' delights for yourself or your customers, then buy now!">>
 										<<else>>
-												<<set _toydolls = "This might be a little too shady or perverted for you. But, if you want your slaves to last longer, you know, look younger for longer, well this treatment can help. However it comes at a price, this treatment will eventually turn your slave girls younger and younger looking, until the point you might not want to use them as sex slaves because they'll appear as teenagers or even younger. I'm serious, your slaves treated with this treatment will eventually look like children! They won't be, really, but this is no fountain of perpetual youth, and to be fair, maybe none of this will be up your alley. If that's the case, I guess you could just sell them once they get too young looking, and possibly for a higher price than if they looked older. It's, at best, for possibly more discerning or eclectic tastes then you might have. I picked it up from an exotics dealer, who picked it up from some old world government research center.", _norefunds = "Remember, though, no money back on this. Technology like this doesn't exist anywhere else, your treated slaves will stay and become younger looking forever, and your older ones will slowly begin to regress towards a disturbingly young mid-childhood state. All those caveats asside, if this sounds like something you'd want, then buy now!">>
+												<<set _toydolls = "This might be a little too shady or perverted for you. But, if you want your slaves to last longer, you know, look younger for longer, well this treatment can help. However it comes at a price, this treatment will eventually turn your slave girls younger and younger looking, until the point you might not want to use them as sex slaves because they'll appear as teenagers or even younger. I'm serious, your slaves treated with this treatment will eventually look like children! They won't be, really, but this is no fountain of perpetual youth, and to be fair, maybe none of this will be up your alley. If that's the case, I guess you could just sell them once they get too young looking, and possibly for a higher price than if they looked older. It's, at best, for possibly more discerning or eclectic tastes then you might have. I picked it up from an exotics dealer, who picked it up from some old world government research center.", _norefunds = "Remember, though, no money back on this. Technology like this doesn't exist anywhere else, your treated slaves will stay and become younger looking forever, and your older ones will slowly begin to regress towards a disturbingly young mid-childhood state. All those caveats aside, if this sounds like something you'd want, then buy now!">>
 										<</if>>
 										<<if $arcologies[0].childhoodFertilityInducedNCSResearch == 0>>
 												<<if $cash >= 135000>>
diff --git a/src/uncategorized/neighborInteract.tw b/src/uncategorized/neighborInteract.tw
index 930dc798dfa0cae39a6c33a8ad204d5711d1f207..219ff1545bc2dc873b333336948436ad32efa4d8 100644
--- a/src/uncategorized/neighborInteract.tw
+++ b/src/uncategorized/neighborInteract.tw
@@ -335,7 +335,7 @@ A 1% interest in $activeArcology.name is worth <<print cashFormat($seed)>> and w
 <</if>>
 
 <br><br>
-If $activeArcology.name has developed enough to begin exporting worthwhile goods, it may be of interest to aquire some.
+If $activeArcology.name has developed enough to begin exporting worthwhile goods, it may be of interest to acquire some.
 <<if ($activeArcology.government == "your trustees") || ($activeArcology.government == "your agent")>>
 	Since it is under your control, it is no problem at all to request the transfer of goods to $arcologies[0].name.
 <<elseif $PC.hacking >= 50>>
diff --git a/src/uncategorized/resEndowment.tw b/src/uncategorized/resEndowment.tw
index a628557fc43869b4a94d2b60e16c2bd1ed1d86d4..69511bac14d2ab18fafe83dc7ebe437dcce46770 100644
--- a/src/uncategorized/resEndowment.tw
+++ b/src/uncategorized/resEndowment.tw
@@ -274,13 +274,13 @@
 	<br>
 	<<link "Propose a dynamic compromise that supports both visions">>
 		<<replace "#result">>
-			You reconnect the call you had with the first matron, splitting your desktop's display to accomodate both video call windows so that you can address both at once. Then you begin to suggest a compromise that should gratify both parties: 
+			You reconnect the call you had with the first matron, splitting your desktop's display to accommodate both video call windows so that you can address both at once. Then you begin to suggest a compromise that should gratify both parties: 
 			<br><br>
 			With their not so feminine voices, conspicuous Adam's Apples, dry barren artificial pussies, and naturally masculine hormonal balances, it is more or less an open secret that futanari 'Sisters' are all biologically, well, men. It is considered poor taste to mention such a thing among polite company, however, as some men who own futas willfully try to ignore this fact or are otherwise are upset to be reminded of it. Your proposed remedy allows both sisters to have their way: With your extensive funding, those current Sisters who were biologically born male (all of them) will be endowed with bigger balls at the second matron's behest. Meanwhile, a new lineup of biologically female Futanari Sisters will be very rapidly inducted, transformed, cultured, trained, and readied for resale, under the expert leadership of the first matron. These new lady-futas will only have erect dicks to complement their natural fertile pussies, feminine hormones, and soft voices; nary a testicle in sight. Slaveowning society on the other hand will enjoy a wider variety of futanari slaves to choose from, opening up exciting new opportunities for owner to sate their personal preferences and perfect their harems. In 15 weeks, the absolute minimum time that all can be feasibly accomplished, everybody wins. Business will continue as usual in the Futanari Sisters until then, with no immediate change in merchandise.
 			<br><br>
 			"Well, you aren't the first one to think of that." the first matron reluctantly states. "You see, there's this outcast group of Sisters who would be perfect for this, it's just... We haven't seen eye to eye for a long time." The second chimes in: "You could talk her into it, she approves of your build far more than mine. Will probably take several months though, to move them all over and integrate all the new Sisters into our fold, and to enjoy the new pussies, of course." After a moment of consideration, the first agrees. You donate the funds to the Sisters with your compliments, ensuring that neither matron completely controls the vast sum. They both understand what they have to do now, starting immediately.
 			<br><br>
-			Days later, the grateful institution begins a mass marketing campaign all accross the world's Free Cities, which includes adverts in FCNN, FCTV, and FC social media about the upcoming changes to their Sister inventory and their need for willing new blood and new specialists to help them bolster their ranks. You feature prominently in each and every promotional item as their foremost contributor. Thanks to this @@.green;you will be a household name in the Free Cities for some time.@@ Such a public flex of your financial muscles has also made your relative power very clear to some in the New World, attracting important players who @@.green;will start to show an interest@@ in doing business with you and your Free City. 
+			Days later, the grateful institution begins a mass marketing campaign all across the world's Free Cities, which includes adverts in FCNN, FCTV, and FC social media about the upcoming changes to their Sister inventory and their need for willing new blood and new specialists to help them bolster their ranks. You feature prominently in each and every promotional item as their foremost contributor. Thanks to this @@.green;you will be a household name in the Free Cities for some time.@@ Such a public flex of your financial muscles has also made your relative power very clear to some in the New World, attracting important players who @@.green;will start to show an interest@@ in doing business with you and your Free City. 
 			<<set $TFS.schoolUpgrade = 3>>
 			<<set $cash -= 250000>>
 			<<set $rep += 2000>>
diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw
index eb05a60ef094f456b2f1e5b41e26becf91369ae3..0d6152ade467604638ff2a642378496698b3bc9f 100644
--- a/src/uncategorized/saLongTermEffects.tw
+++ b/src/uncategorized/saLongTermEffects.tw
@@ -3665,7 +3665,7 @@
 
                 <<set _precocious = 0>>
                 /* Just having NCS speeds precocious Puberty, but also hormonal puberty affects are
-                * increased while secondary growth is supressed
+                * increased while secondary growth is suppressed
                 */
                 <<if ($slaves[$i].inducedNCS == 1)>>
                         <<set _precocious -= 0.8>>
@@ -3768,7 +3768,7 @@
 
  	<<if ($slaves[$i].physicalAge < $slaves[$i].pubertyAgeXY) && $slaves[$i].balls >= 1 && $slaves[$i].pubertyXY == 0>>  /* Male type */
                 <<set _precocious = 0>>
-                /* Just having NCS speeds precocious Puberty, but also hormonal puberty affects are increased while secondary growth is supressed */
+                /* Just having NCS speeds precocious Puberty, but also hormonal puberty affects are increased while secondary growth is suppressed */
                 <<if ($slaves[$i].inducedNCS == 1)>>
                         <<set _precocious -= 0.8>>
                 <</if>>
diff --git a/src/uncategorized/slaveMarkets.tw b/src/uncategorized/slaveMarkets.tw
index 8657b31b57969c9387ab3763022d08266cd390bf..ad7930827f665503aac1630884e5c2a8c1291f28 100644
--- a/src/uncategorized/slaveMarkets.tw
+++ b/src/uncategorized/slaveMarkets.tw
@@ -36,7 +36,7 @@ You visit the slave markets off the arcology plaza. It's always preferable to ex
 	<<elseif $seed == 2>>
 		A scientist turns to you and remarks "I almost envy the hardware. They believe they're having a fulfilling career with a loving family and meaningful relationships for a lifetime. Honestly, if the mental imprinting process wasn't so destructive to the human body, I'd probably hop in myself!"
 	<<elseif $seed == 3>>
-		Racks of ravaged bodies are layed across tables with plaques stating slave IQ, career, and sexual skill exam results.
+		Racks of ravaged bodies are laid across tables with plaques stating slave IQ, career, and sexual skill exam results.
 	<<else>>
 		Curious, you ask a technician why it's necessary for the merchandise to be so badly treated. He replies "Forcing stimulus on the hardware takes an enormous toll on their nervous and circulatory system. The nonfunctional components are disabled and removed as necessary to ensure optimal response to the imprinting process."
 	<</if>>
diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw
index dd423353d3ca2f621b6c7f932f94702163b07bed..bd365883501c8b52ec52b0ecbeb0f6aaf02db9be 100644
--- a/src/utility/descriptionWidgetsFlesh.tw
+++ b/src/utility/descriptionWidgetsFlesh.tw
@@ -11249,11 +11249,11 @@ $He has
 		<</if>>
 	<<elseif $activeSlave.belly >= 30000>>
 		<<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>>
-			$activeSlave.slaveName's skirt has retrofitted with a large elastic band to accomodate $his titanic <<print $activeSlave.inflationType>>-filled belly.
+			$activeSlave.slaveName's skirt has retrofitted with a large elastic band to accommodate $his titanic <<print $activeSlave.inflationType>>-filled belly.
 		<<elseif $activeSlave.bellyImplant > 0>>
-			$activeSlave.slaveName's skirt has retrofitted with a large elastic band to accomodate $his titanic implant-filled belly.
+			$activeSlave.slaveName's skirt has retrofitted with a large elastic band to accommodate $his titanic implant-filled belly.
 		<<else>>
-			$activeSlave.slaveName's skirt has retrofitted with a large elastic band to accomodate $his titanic pregnant belly.
+			$activeSlave.slaveName's skirt has retrofitted with a large elastic band to accommodate $his titanic pregnant belly.
 		<</if>>
 	<<elseif $activeSlave.weight > 190>>
 		$activeSlave.slaveName's massively fat belly spills over the sides of $his skirt.
@@ -14897,7 +14897,7 @@ $He has
 <<case "a burkini">>
 	The bottom of $activeSlave.slaveName's burkini's tunic lies at crotch-level due to $his titanic implant-filled belly.
 <<case "a hijab and blouse">>
-	$activeSlave.slaveName's skirt has retrofitted with a large elastic band to accomodate $his titanic implant-filled belly.
+	$activeSlave.slaveName's skirt has retrofitted with a large elastic band to accommodate $his titanic implant-filled belly.
 <<case "battledress">>
 	$activeSlave.slaveName's tank top rests atop $his titanic implant-filled belly leaving $him looking like someone who fucked half the country.
 <<case "a halter top dress">>
diff --git a/src/utility/slaveCreationWidgets.tw b/src/utility/slaveCreationWidgets.tw
index ec4fbf586dd7b994ed9cd54c198cb6bc583bb70e..dfd08b5dffe2bc4c6d7886efe43d54deb3e06c4e 100644
--- a/src/utility/slaveCreationWidgets.tw
+++ b/src/utility/slaveCreationWidgets.tw
@@ -3781,7 +3781,7 @@
 		<<set $activeSlave.chem = 10 * random(1,3)>>
 		<<set $activeSlave.customTat = "The prominent emblem of a local gang spans the length of his shoulders.">>
 		<<set $activeSlave.combatSkill = 1>>
-	<<case "gang theif">>
+	<<case "gang thief">>
 		<<set $activeSlave.origin = "You purchased her life at a prison sale. She was locked away for gang related raiding of several local warehouses.">>
 		<<set $activeSlave.career = "a gang member">>
 		<<set $activeSlave.devotion = random(-100,-50)>>