Merge pull request #5190 from BFTrick/cool-typo

Fixing "cool" Typo. See #5189
This commit is contained in:
Mike Jolley 2014-03-21 21:44:01 +00:00
commit 12d5ffe2a1
4 changed files with 5 additions and 5 deletions

View File

@ -687,7 +687,7 @@ class WC_Product {
* Returns false if the product cannot be bought. * Returns false if the product cannot be bought.
* *
* @access public * @access public
* @return cool * @return bool
*/ */
public function is_purchasable() { public function is_purchasable() {

View File

@ -30,7 +30,7 @@ class WC_Product_External extends WC_Product {
* Returns false if the product cannot be bought. * Returns false if the product cannot be bought.
* *
* @access public * @access public
* @return cool * @return bool
*/ */
public function is_purchasable() { public function is_purchasable() {
return apply_filters( 'woocommerce_is_purchasable', false, $this ); return apply_filters( 'woocommerce_is_purchasable', false, $this );

View File

@ -154,7 +154,7 @@ class WC_Product_Grouped extends WC_Product {
* Returns false if the product cannot be bought. * Returns false if the product cannot be bought.
* *
* @access public * @access public
* @return cool * @return bool
*/ */
public function is_purchasable() { public function is_purchasable() {
return apply_filters( 'woocommerce_is_purchasable', false, $this ); return apply_filters( 'woocommerce_is_purchasable', false, $this );

View File

@ -240,7 +240,7 @@ class WC_Product_Variation extends WC_Product {
* Returns false if the product cannot be bought. * Returns false if the product cannot be bought.
* *
* @access public * @access public
* @return cool * @return bool
*/ */
public function is_purchasable() { public function is_purchasable() {