diff --git a/general/packages.html b/general/packages.html index 7b6e4519f..2cdab066d 100644 --- a/general/packages.html +++ b/general/packages.html @@ -49,7 +49,7 @@
When it comes to organizing, reuse and share your code, packages are a great way to allow you to do this. They can contain all sorts of code like models, third-party libraries, configs and so on. - Packages also allow you to extend the core without messing up you app/classes directory. + Packages also allow you to extend the core without messing up your app/classes directory. To clarify what packages are, here are the "is" and "is not" on packages.
@@ -114,7 +114,7 @@Once you have your classes in place you can now start using them.
-Note: if package namespaces aren't aliased to global you must supply the it:
+Note: if package namespaces aren't aliased to global you must supply it:
// If aliased to global just use
$instance = new Myclass;