From 3dce169b924298304ab1db65d9112313501cdbb1 Mon Sep 17 00:00:00 2001 From: Andrew Pillar Date: Sat, 12 Feb 2022 11:58:38 +0000 Subject: [PATCH] Typo fixes --- docs/control-flow.md | 2 +- docs/syntax.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/control-flow.md b/docs/control-flow.md index 7e1e7f8..65d9f24 100644 --- a/docs/control-flow.md +++ b/docs/control-flow.md @@ -162,7 +162,7 @@ will evaluated to `true` if the key exists in the object, ## Equality operators -Equelity operators in req are used to evaluate two expressions on either side of +Equality operators in req are used to evaluate two expressions on either side of an operator to determine their equality. In req, these are, == equals diff --git a/docs/syntax.md b/docs/syntax.md index 2351e7b..07cfc35 100644 --- a/docs/syntax.md +++ b/docs/syntax.md @@ -1,6 +1,6 @@ # Syntax -A req script is a plain text file with `.req` suffixed to the name, Each script +A req script is a plain text file with `.req` suffixed to the name. Each script file is a list of statements, ending with a semicolon (`;`). * [Comments](#comments)