diff --git a/src/Bladeburner/data/BlackOperations.tsx b/src/Bladeburner/data/BlackOperations.tsx index 124a84c93..4061be1bc 100644 --- a/src/Bladeburner/data/BlackOperations.tsx +++ b/src/Bladeburner/data/BlackOperations.tsx @@ -256,8 +256,8 @@ export const BlackOperations: { ones from the Uprising.

- {FactionNames.OmniTekIncorporated} has also told us they they believe someone has triggered this malfunction in - a large group of MK-VI Synthoids, and that these newly-radicalized Synthoids are now amassing in{" "} + {FactionNames.OmniTekIncorporated} has also told us they believe someone has triggered this malfunction in a + large group of MK-VI Synthoids, and that these newly-radicalized Synthoids are now amassing in{" "} {CityName.Volhaven} to form a terrorist group called Ultron.

diff --git a/src/Corporation/data/CorporationUpgrades.ts b/src/Corporation/data/CorporationUpgrades.ts index 150494d9b..f3cd6054c 100644 --- a/src/Corporation/data/CorporationUpgrades.ts +++ b/src/Corporation/data/CorporationUpgrades.ts @@ -71,7 +71,7 @@ export const CorporationUpgrades: Record = { [FactionNames.BachmanAssociates]: new FactionInfo({ infoText: ( <> - Where Law and Business meet - thats where we are. + Where Law and Business meet - that's where we are.

Legal Insight - Business Instinct - Innovative Experience. diff --git a/src/Literature/Literatures.ts b/src/Literature/Literatures.ts index 4a59fe4f3..8f923edf7 100644 --- a/src/Literature/Literatures.ts +++ b/src/Literature/Literatures.ts @@ -244,7 +244,7 @@ export const Literatures: IMap = {}; "is that most of the rise is in violent crime such as homicide and assault. According " + "to the study, the city saw a total of 21,406 reported homicides in 2076, which is over " + "a 20% increase compared to 2075.

" + - "CIA director David Glarow says its too early to know " + + "CIA director David Glarow says it's too early to know " + "whether these figures indicate the beginning of a sustained increase in crime rates, or whether " + "the year was just an unfortunate outlier. He states that many intelligence and law enforcement " + "agents have noticed an increase in organized crime activites, and believes that these figures may " + @@ -319,7 +319,7 @@ export const Literatures: IMap = {}; "CompanionBot, a robot meant to act as a comforting friend for lonely and grieving people, is eerily human-like " + "in its appearance, speech, mannerisms, and even movement. However its artificial intelligence isn't the same as " + "that of humans. Not yet. It doesn't have sentience or self-awareness or consciousness.

" + - "Many neuroscientists believe that we won't ever reach the point of creating artificial human intelligence. 'At the end of the " + + "Many neuroscientists believe that we won't ever reach the point of creating artificial human intelligence. 'At the end of " + "the day, AI comes down to 1's and 0's, while the human brain does not. We'll never see AI that is identical to that of " + "humans.'"; Literatures[fn] = new Literature(title, fn, txt); diff --git a/src/Locations/ui/SpecialLocation.tsx b/src/Locations/ui/SpecialLocation.tsx index cd0898608..2bed44a22 100644 --- a/src/Locations/ui/SpecialLocation.tsx +++ b/src/Locations/ui/SpecialLocation.tsx @@ -137,7 +137,7 @@ export function SpecialLocation(props: IProps): React.ReactElement { return ( <> - A business man is yelling at a clerk. You should come back later. + A businessman is yelling at a clerk. You should come back later. ); @@ -232,7 +232,7 @@ export function SpecialLocation(props: IProps): React.ReactElement { <> - Allison "Mother" Stanek: I see you've taken to my creation. So much so it could hardly be recognized as + Allison "Mother" Stanek: I see you've taken to my creation. So much that it could hardly be recognized as one of my own after your tinkering with it. I see you follow the ways of the Machine God as I do, and your mastery of the gift clearly demonstrates that. My hopes are climbing by the day for you. diff --git a/src/PersonObjects/Sleeve/ui/FAQModal.tsx b/src/PersonObjects/Sleeve/ui/FAQModal.tsx index 9911adce4..e796f46c2 100644 --- a/src/PersonObjects/Sleeve/ui/FAQModal.tsx +++ b/src/PersonObjects/Sleeve/ui/FAQModal.tsx @@ -104,7 +104,7 @@ export function FAQModal({ open, onClose }: IProps): React.ReactElement { What is Memory?
- Sleeve memory dictates what a sleeve's synchronization will be when its reset by switching BitNodes. For + Sleeve memory dictates what a sleeve's synchronization will be when it's reset by switching BitNodes. For example, if a sleeve has a memory of 25, then when you switch BitNodes its synchronization will initially be set to 25, rather than 1. diff --git a/src/SaveObject.tsx b/src/SaveObject.tsx index 461e3ab08..f4a269eed 100755 --- a/src/SaveObject.tsx +++ b/src/SaveObject.tsx @@ -580,7 +580,7 @@ function createNewUpdateText(): void { () => dialogBoxCreate( "New update!
" + - "Please report any bugs/issues through the github repository " + + "Please report any bugs/issues through the GitHub repository " + "or the Bitburner subreddit (reddit.com/r/bitburner).

" + CONSTANTS.LatestUpdate, resets, diff --git a/src/data/codingcontracttypes.ts b/src/data/codingcontracttypes.ts index b7fce1441..3d49eeac8 100644 --- a/src/data/codingcontracttypes.ts +++ b/src/data/codingcontracttypes.ts @@ -417,7 +417,7 @@ export const codingContractTypesMetadata: ICodingContractTypeMetadata[] = [ { desc: (arr: number[][]): string => { return [ - "Given the following array of array of numbers representing a list of", + "Given the following array of arrays of numbers representing a list of", "intervals, merge all overlapping intervals.\n\n", `[${convert2DArrayToString(arr)}]\n\n`, "Example:\n\n", @@ -1545,7 +1545,7 @@ export const codingContractTypesMetadata: ICodingContractTypeMetadata[] = [ return [ "Lempel-Ziv (LZ) compression is a data compression technique which encodes data using references to", "earlier parts of the data. In this variant of LZ, data is encoded in two types of chunk. Each chunk", - "begins with a length L, encoded as a single ASCII digit from 1 - 9, followed by the chunk data,", + "begins with a length L, encoded as a single ASCII digit from 1 to 9, followed by the chunk data,", "which is either:\n\n", "1. Exactly L characters, which are to be copied directly into the uncompressed data.\n", "2. A reference to an earlier part of the uncompressed data. To do this, the length is followed", @@ -1580,7 +1580,7 @@ export const codingContractTypesMetadata: ICodingContractTypeMetadata[] = [ return [ "Lempel-Ziv (LZ) compression is a data compression technique which encodes data using references to", "earlier parts of the data. In this variant of LZ, data is encoded in two types of chunk. Each chunk", - "begins with a length L, encoded as a single ASCII digit from 1 - 9, followed by the chunk data,", + "begins with a length L, encoded as a single ASCII digit from 1 to 9, followed by the chunk data,", "which is either:\n\n", "1. Exactly L characters, which are to be copied directly into the uncompressed data.\n", "2. A reference to an earlier part of the uncompressed data. To do this, the length is followed",