You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1182,9 +1182,9 @@ Needs will change, therefore code will change. We learned in OO 101 that there a
1182
1182
<h1>Chapter 11 - Systems</h1>
1183
1183
</a>
1184
1184
1185
-
## Separe Constructing a System from using It
1185
+
## Separate Constructing a System from using It
1186
1186
1187
-
_Software Systems should separate the startuo process, when the application objects are constructed and the dependencies are "wired" thogether, from the runtime logic that takes over after startup_
1187
+
_Software Systems should separate the startup process, when the application objects are constructed and the dependencies are "wired" together, from the runtime logic that takes over after startup_
1188
1188
1189
1189
### Separation from main
1190
1190
@@ -1216,7 +1216,7 @@ Concurrence is a decoupling strategy. It helps us decouple what gets fone from w
1216
1216
1217
1217
Decoupling what from when can dramatically improve both the throughput and structures of an application. From a structural point of view the application looks like many lit- tle collaborating computers rather than one big main loop. This can make the system easier to understand and offers some powerful ways to separate concerns.
1218
1218
1219
-
## Miths and Misconceptions
1219
+
## Myths and Misconceptions
1220
1220
1221
1221
- Concurrency always improves performance.
1222
1222
Concurrency can sometimes improve performance, but only when there is a lot of wait time that can be shared between multiple threads or multiple processors. Neither situ- ation is trivial.
0 commit comments