Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-04-20 12:37:35 +0300
committerJoas Schilling <coding@schilljs.com>2020-04-20 12:37:35 +0300
commit4413ed15c02568974e491d9404ce59758f6ce052 (patch)
treec8d56207663efbcd23ed1987166b1b95f349d322 /sample-commands/hackernews.php
parent1607c68f5378569dcde7466c60761fc1026620d0 (diff)
Fix command samples
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'sample-commands/hackernews.php')
-rw-r--r--sample-commands/hackernews.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/sample-commands/hackernews.php b/sample-commands/hackernews.php
index eea886829..aae000202 100644
--- a/sample-commands/hackernews.php
+++ b/sample-commands/hackernews.php
@@ -45,7 +45,7 @@ $content = file_get_contents($endpoint);
$results = json_decode($content, true);
$stories = array_slice($results, 0, 5);
-$response = 'Hackernews ' . ucfirst($mode) . ' 5:' . "\n";
+$response = 'Hackernews ' . ucfirst($mode) . ' 5:' . "\n";
$length = 120;
foreach ($stories as $storyId) {