Skip to content

Commit bc91287

Browse files
authored
Update README.md
Just a few misspellings.
1 parent ef7c0de commit bc91287

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ Cons:
188188
- Data is not readily streamable and has to be broken up into individual objects
189189
- Can't use comments
190190
191-
#### What is the difference between not-running, inactive, active, background and suspended execution states?**
191+
#### What is the difference between not-running, inactive, active, background and suspended execution states?
192192
193193
- **Not-running state** occurs when the app either has not be launched or was running but was terminated by the system.
194194
- **Inactive state** occurs where the app runs in the foreground but is currently not receiving events. (It may be executing other code though). This state is typically brief as apps transitions to other states.
@@ -341,7 +341,7 @@ First, properties are set to *atomic* by default.
341341

342342
*Atomic* properties are more likely to guarentee thread-safety because it will ensure that a value is fully set (by the setter method) or fully retrieved (by the getter method) when accessor methods are called simultaneously.
343343

344-
*Non-atomic* properties, howeer are not thread-safe. While they run faster, they may cause race conditions. In the event that accessor methods are called simultaneously and a race condition occurs, a setter value would first release the old value and a getter method would retrieve nil since no value has not been set yet.
344+
*Non-atomic* properties, however are not thread-safe. While they run faster, they may cause race conditions. In the event that accessor methods are called simultaneously and a race condition occurs, a setter value would first release the old value and a getter method would retrieve nil since no value has not been set yet.
345345

346346
#### What is GCD and how is it used?
347347

@@ -460,7 +460,7 @@ The *frame* of a UIView is the region relative to the superview it is contained
460460

461461
The *reuseIdentifier* indicates that cells for a UITableView (or UICollectionView) can be reused. UITableView maintains an internal cache of UITableViewCell with the appropriate identifier and allows them to be reused when dequeueForCellWithReuseIdentifier is called. As a result, this increases performance of UITableView since a new view does not have to be created for a cell.
462462

463-
#### What is autolayout?
463+
#### What is Auto Layout?
464464

465465
Auto Layout is used to dynamically calculate the size and position of views based on constraints.
466466

0 commit comments

Comments
 (0)