B. Petersen před 4 roky
rodič
revize
815607ada6
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      docs/uiview-layout.md

+ 2 - 2
docs/uiview-layout.md

@@ -20,7 +20,7 @@
   - manage a stack of `UIViewController` and a navigation bar (atop)
   - performs horizontal view transitions for pushed and popped views
     (via `pushViewController()`, `popViewController()`)
-  - typically subclasses, says apple
+  - typically subclassed, says apple
   
 - "delegate"
   - a "delegate" is a set of functions, defined by a protocol, to receive events as `didSelect()` [2]
@@ -73,7 +73,7 @@
 
 ## holding references
 
-a tricky part (see eg. [3]) seems to be to hold the correct type of rerences to the UIViewControllers.
+a tricky part (see eg. [3]) seems to be to hold the correct type of references to the UIViewControllers.
 
 - at least one "strong" (normal) reference is needed somewhere.