Browse Source

Improve Asset class documentation.

Taylor Otwell 13 years ago
parent
commit
9f7cd6007b
1 changed files with 3 additions and 1 deletions
  1. 3 1
      system/asset.php

+ 3 - 1
system/asset.php

@@ -51,8 +51,10 @@ class Asset {
 	 * <code>
 	 * // Add jQuery to the default container
 	 * Asset::script('jquery', 'js/jquery.js');
-	 * </code>
 	 *
+	 * // Equivalent call using the container method
+	 * Asset::container()->script('jquery', 'js/jquery.js');
+	 * </code>
 	 */
 	public static function __callStatic($method, $parameters)
 	{