Skip to content

Commit 94acca2

Browse files
authored
Tweak 07_structuringtheapp for fluency and typos
1 parent acffb45 commit 94acca2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/overmind-website/guides/beginner/07_structuringtheapp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ You will quickly see the need to give more structure to your application. The ba
66

77
does not scale very well.
88

9-
The before mentioned base structure is called **the configuration** of your application and tools are provided to create more complex configurations. But before we look at those tools, lets talk about file structure.
9+
The abovementioned base structure is called **the configuration** of your application and tools are provided to create more complex configurations. But before we look at those tools, let's talk about file structure.
1010

1111
## Domains
1212

@@ -16,7 +16,7 @@ As your application grows you start to separate it into different domains. A dom
1616
h(Example, { name: "guide/structuringtheapp/files" })
1717
```
1818

19-
In this structure we are splitting up the differet components of the base structure. This is a good first step. The **index** file acts as the file that brings the state, actions and effects together.
19+
In this structure we are splitting up the different components of the base structure. This is a good first step. The **index** file acts as the file that brings the state, actions and effects together.
2020

2121
But if we want to split up into actual domains it would look more like this:
2222

@@ -69,5 +69,5 @@ h(Example, { name: "guide/structuringtheapp/namespaced" })
6969
We used the **namespaced** function to put the state, actions and effects from each domain behind a key. In this case the key is the same as the name of the domain itself. This is an effective way to split up your app.
7070

7171
```marksy
72-
h(Notice, null, "Even though you split up into different domains each domain has access to the state of the whole application. This is an important feature of Overmind which allows you to scale up and explore the domains of the application without having to worry about isolation")
73-
```
72+
h(Notice, null, "Even though you split up into different domains each domain has access to the state of the whole application. This is an important feature of Overmind which allows you to scale up and explore the domains of the application without having to worry about isolation.")
73+
```

0 commit comments

Comments
 (0)