diff --git a/src/ArticleRepository.php b/src/ArticleRepository.php index 37a9ed4..803565a 100644 --- a/src/ArticleRepository.php +++ b/src/ArticleRepository.php @@ -41,7 +41,7 @@ public function state(Entry $entry): string return Api::article($id)->data->state; }); - // Save the temp key to the regular key if the state if 'LIVE'. + // Persist the temp value to the article state if the state is 'LIVE'. if ($state === 'LIVE') { Cache::put("apple_news_{$id}_state", $state); }