Skip to content

Commit 4fd9ade

Browse files
authored
Merge pull request #2787 from Moiman/eng-typos
Fix typos
2 parents 450140b + c2060f1 commit 4fd9ade

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/content/11/en/part11e.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ A common use of this is to have some reference to the tracking system in Git pul
1919

2020
When the CI process finishes quickly, it can be convenient to just watch it execute and wait for the result. As projects become more complex, so too does the process of building and testing the code. This can quickly lead to a situation where it takes long enough to generate the build result that a developer may want to begin working on another task. This in turn leads to a forgotten build.
2121

22-
This is especially problematic if we're talking about merging PRs that may affect another developer's work, either causing problems or delays for them. This can also lead to a situation where you think you've deployed something but haven't actually finished a deployment, this can lead to mis-communication with teammates and customers (e.g. "Go ahead and try that again, the bug should be fixed").
22+
This is especially problematic if we're talking about merging PRs that may affect another developer's work, either causing problems or delays for them. This can also lead to a situation where you think you've deployed something but haven't actually finished a deployment, this can lead to miscommunication with teammates and customers (e.g. "Go ahead and try that again, the bug should be fixed").
2323

2424
There are several solutions to this problem ranging from simple notifications to more complicated processes that simply merge passing code if certain conditions are met. We're going to discuss notifications as a simple solution since it's the one that interferes with the team workflow the least.
2525

src/content/3/en/part3d.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ It is also vital to follow continuously the server logs. The problem became obvi
133133

134134
The database url was _undefined_, so the command *fly secrets set MONGODB\_URI* was forgotten.
135135

136-
When using Render, the database url is given by definig the proper env in the dashboard:
136+
When using Render, the database url is given by defining the proper env in the dashboard:
137137

138138
![browser render showing the MONGODB_URI env variable](../../images/3/render-env.png)
139139

src/content/8/en/part8b.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ The name of the query is <i>findPersonByName</i>, and it is given a string <i>$n
233233

234234
It is also possible to do queries with parameters with the Apollo Explorer. The parameters are given in <i>Variables</i>:
235235

236-
![apollostudio findPersonByName highlighting nameToSEarch Arto Hellas](../../images/8/10x.png)
236+
![apollostudio findPersonByName highlighting nameToSearch Arto Hellas](../../images/8/10x.png)
237237

238238
The *useQuery* hook is well-suited for situations where the query is done when the component is rendered. However, we now want to make the query only when a user wants to see the details of a specific person, so the query is done only [as required](https://www.apollographql.com/docs/react/data/queries/#executing-queries-manually).
239239

src/content/9/en/part9d.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ Besides the attributes that are found in the various course parts, we have now i
376376
Next, we will create a type [union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) of all these types. We can then use it to define a type for our array, which should accept any of these course part types:
377377
378378
```js
379-
type CoursePart = CoursePartBasic | CoursePartGroup | CoursePartBackround;
379+
type CoursePart = CoursePartBasic | CoursePartGroup | CoursePartBackground;
380380
```
381381
382382
Now we can set the type for our *courseParts* variable:

0 commit comments

Comments
 (0)