Skip to content

Commit 29899f7

Browse files
nagilsonCopilot
andauthored
fix comment /tmp/ and not /temp/
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 0240986 commit 29899f7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

vscode-dotnet-runtime-library/src/Utils/NodeIPCMutex.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ export class NodeIPCMutex
5555
* @remarks Resolves the directory to hold the IPC handle in. Extracted as a protected method so tests
5656
* can override it to use a directory they fully control (e.g. for simulating permission errors).
5757
*
58-
* On Unix, A file descriptor in /temp/ is a good option to hold this sock.
59-
* In Linux, The user or system may set XDG_RUNTIME_DIR to set our applications temporary directory, so use this instead of /temp/
58+
* On Unix, A file descriptor in /tmp/ is a good option to hold this sock.
59+
* In Linux, The user or system may set XDG_RUNTIME_DIR to set our applications temporary directory, so use this instead of /tmp/
6060
* On Unix, Access to /tmp/ may be restricted, but all processes must use the same directory, so we can't condition to use another dir based on the permissions for it.
6161
*
6262
* CAVEAT: XDG_RUNTIME_DIR (typically /run/user/<uid>/) is set by pam_systemd during login sessions.

0 commit comments

Comments
 (0)