Browse Source

Fixed typos

othercorey 5 years ago
parent
commit
97fc4c857a
1 changed files with 4 additions and 4 deletions
  1. 4 4
      templates/element/auto_table_warning.php

+ 4 - 4
templates/element/auto_table_warning.php

@@ -27,10 +27,10 @@ instead of any other specific subclass.
 <p>This could be the cause for this exception. Auto-Tables are created for you under the following circumstances:</p>
 <ul>
     <li>The class for the specified table does not exist.</li>
-    <li>The Table was created with a typo: <strong><em>$this->getTableLocator()->get('Atricles');</em></strong></li>
-    <li>The class file has a typo in the name or incorrect namespace: <strong><em>class Atricles extends Table</em></strong></li>
-    <li>The file containing the class has a typo or incorrect casing: <strong><em>Atricles.php</em></strong></li>
-    <li>The Table was used using associations but the association has a typo: <strong><em>$this->belongsTo('Atricles')</em></strong></li>
+    <li>The Table was created with a typo: <strong><em>$this->getTableLocator()->get('Articles');</em></strong></li>
+    <li>The class file has a typo in the name or incorrect namespace: <strong><em>class Articles extends Table</em></strong></li>
+    <li>The file containing the class has a typo or incorrect casing: <strong><em>Articles.php</em></strong></li>
+    <li>The Table was used using associations but the association has a typo: <strong><em>$this->belongsTo('Articles')</em></strong></li>
     <li>The table class resides in a Plugin but <strong><em>no plugin notation</em></strong> was used in the association definition.</li>
 </ul>
 <br/>