From 335273bf99e099a50180ec2cef01be7be1718772 Mon Sep 17 00:00:00 2001 From: Alvaro Sanchez-Leon Date: Thu, 7 Jan 2021 17:49:16 -0500 Subject: [PATCH] Fix typo 'mounpoint' Signed-off-by: Alvaro Sanchez-Leon --- .../core/src/node/env-variables/env-variables-server.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/core/src/node/env-variables/env-variables-server.ts b/packages/core/src/node/env-variables/env-variables-server.ts index 92644e0a53625..d0e687b701847 100644 --- a/packages/core/src/node/env-variables/env-variables-server.ts +++ b/packages/core/src/node/env-variables/env-variables-server.ts @@ -73,9 +73,9 @@ export class EnvVariablesServerImpl implements EnvVariablesServer { const uris: string[] = []; const drives = await drivelist.list(); for (const drive of drives) { - for (const mounpoint of drive.mountpoints) { - if (this.filterHiddenPartitions(mounpoint.path)) { - uris.push(FileUri.create(mounpoint.path).toString()); + for (const mountpoint of drive.mountpoints) { + if (this.filterHiddenPartitions(mountpoint.path)) { + uris.push(FileUri.create(mountpoint.path).toString()); } } }