From b4abca1c823c6d51358c13cb67f3e2ddb7b63bf5 Mon Sep 17 00:00:00 2001 From: shivapoudel Date: Sun, 21 Sep 2014 00:29:22 +0545 Subject: [PATCH] Found and fix indendation for multiline comments :) --- includes/class-wc-cache-helper.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/includes/class-wc-cache-helper.php b/includes/class-wc-cache-helper.php index 613bfd73353..4ecf40f4e76 100644 --- a/includes/class-wc-cache-helper.php +++ b/includes/class-wc-cache-helper.php @@ -26,19 +26,19 @@ class WC_Cache_Helper { /** * Get transient version * - * When using transients with unpredictable names, e.g. those containing an md5 - * hash in the name, we need a way to invalidate them all at once. + * When using transients with unpredictable names, e.g. those containing an md5 + * hash in the name, we need a way to invalidate them all at once. * - * When using default WP transients we're able to do this with a DB query to + * When using default WP transients we're able to do this with a DB query to * delete transients manually. * * With external cache however, this isn't possible. Instead, this function is used - * to append a unique string (based on time()) to each transient. When transients + * to append a unique string (based on time()) to each transient. When transients * are invalidated, the transient version will increment and data will be regenerated. * * Raised in issue https://github.com/woothemes/woocommerce/issues/5777 * Adapted from ideas in http://tollmanz.com/invalidation-schemes/ - * + * * @param string $group Name for the group of transients we need to invalidate * @param boolean $refresh true to force a new version * @return string transient version based on time(), 10 digits