From 5643e6d06ca9b9908d4b4e3fc7b6baab25836495 Mon Sep 17 00:00:00 2001 From: HDegroote <75906619+HDegroote@users.noreply.github.com> Date: Wed, 24 Jan 2024 22:06:09 +0100 Subject: [PATCH] Less words in pear terminal guide --- guide/starting-a-pear-terminal-project.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/guide/starting-a-pear-terminal-project.md b/guide/starting-a-pear-terminal-project.md index 475e0fe..88e627a 100644 --- a/guide/starting-a-pear-terminal-project.md +++ b/guide/starting-a-pear-terminal-project.md @@ -10,9 +10,9 @@ cd chat-bot pear init --yes ``` -This will create a base structure for the project. +This creates the base project structure. -- `package.json`. Configuration for the app. Notice the `pear` property. -- `index.js`. The entrpoint for the app. -- `app.js`. The main code. -- `test/index.test.js`. Skeleton for writing tests. +- `package.json`. App configuration. Notice the `pear` property. +- `index.js`. App entrypoint. +- `app.js`. Main code. +- `test/index.test.js`. Test skeleton.