From 4544e5fc3fcd49f9195afb4fcec0e128b27c5cba Mon Sep 17 00:00:00 2001
From: "Mikhail.Barash" <mikhail.barash@uib.no>
Date: Wed, 20 Mar 2024 19:48:32 +0100
Subject: [PATCH] super minor fix: misprint in comment in line 21 (doesn't
 affect anything)

---
 src/environment.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/environment.ts b/src/environment.ts
index ce37f6d..1ea4ec0 100644
--- a/src/environment.ts
+++ b/src/environment.ts
@@ -18,7 +18,7 @@ function isDefined<T>(x: string, env: Environment<T>): boolean {
 }
 
 function declare<T>(x: string, v: T, env: Environment<T>): void {
-  // 1. Add a variable represented by the parameter `x` into the environment represented by the parameters `env`.
+  // 1. Add a variable represented by the parameter `x` into the environment represented by the parameter `env`.
   // TODO: YOUR CODE HERE // Hint: You can find which methods to use at: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map
 }
 
-- 
GitLab