@@ -86,17 +86,17 @@ The following code loads **app/Libraries/Sub/SubLib.php** if it exists:
8686.. literalinclude :: factories/013.php
8787 :lines: 2-
8888
89- Passing Full Qualified Classname
90- --------------------------------
89+ Passing Fully Qualified Classname
90+ ---------------------------------
9191
92- You could also request a full qualified classname:
92+ You could also request a fully qualified classname:
9393
9494.. literalinclude :: factories/002.php
9595 :lines: 2-
9696
9797It returns the instance of ``Blog\Models\UserModel `` if it exists.
9898
99- .. note :: Prior to v4.4.0, when you requested a full qualified classname,
99+ .. note :: Prior to v4.4.0, when you requested a fully qualified classname,
100100 if you had only ``Blog\Models\UserModel ``, the instance would be returned.
101101 But if you had both ``App\Models\UserModel `` and ``Blog\Models\UserModel ``,
102102 the instance of ``App\Models\UserModel `` would be returned.
@@ -143,7 +143,7 @@ the ``Factories::define()`` method:
143143
144144The first parameter is a component. The second parameter is a class alias
145145(the first parameter to Factories magic static method), and the third parameter
146- is the true full qualified classname to be loaded.
146+ is the true fully qualified classname to be loaded.
147147
148148After that, if you load ``Myth\Auth\Models\UserModel `` with Factories, the
149149``App\Models\UserModel `` instance will be returned:
0 commit comments