Skip to content

Commit 1914bd6

Browse files
committed
fix(cli): consistent command description
1 parent d787825 commit 1914bd6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

templates/cli/lib/commands/pull.js.twig

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -314,33 +314,33 @@ pull
314314
pull
315315
.command("function")
316316
.alias("functions")
317-
.description("Pulling your {{ spec.title|caseUcfirst }} cloud function")
317+
.description("Pull your {{ spec.title|caseUcfirst }} cloud function")
318318
.option("--no-code", "Don't pull the function's code")
319319
.option("--with-variables", `Pull function variables. ${chalk.red('recommend for testing purposes only')}`)
320320
.action(actionRunner(pullFunctions))
321321

322322
pull
323323
.command("collection")
324324
.alias("collections")
325-
.description("Pulling your {{ spec.title|caseUcfirst }} collections")
325+
.description("Pull your {{ spec.title|caseUcfirst }} collections")
326326
.action(actionRunner(pullCollection))
327327

328328
pull
329329
.command("bucket")
330330
.alias("buckets")
331-
.description("Pulling your Appwrite buckets")
331+
.description("Pull your Appwrite buckets")
332332
.action(actionRunner(pullBucket))
333333

334334
pull
335335
.command("team")
336336
.alias("teams")
337-
.description("Pulling your Appwrite teams")
337+
.description("Pull your Appwrite teams")
338338
.action(actionRunner(pullTeam))
339339

340340
pull
341341
.command("topic")
342342
.alias("topics")
343-
.description("Initialise your Appwrite messaging topics")
343+
.description("Pull your Appwrite messaging topics")
344344
.action(actionRunner(pullMessagingTopic))
345345

346346
module.exports = {

0 commit comments

Comments
 (0)