From d1cf0e40d17fcdd282a71e5be94d7df99005e72c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josip=20=C4=86avar?= Date: Thu, 7 Jan 2021 17:52:52 +0100 Subject: [PATCH] Fix closing code quote --- processes-shell/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/processes-shell/README.md b/processes-shell/README.md index af50669..943610b 100644 --- a/processes-shell/README.md +++ b/processes-shell/README.md @@ -121,7 +121,7 @@ consider the `access()` system call. For example, when the user types `ls`, and path is set to include both `/bin` and `/usr/bin`, try `access("/bin/ls", X_OK)`. If that fails, try "/usr/bin/ls". If that fails too, it is an error. -Your initial shell path should contain one directory: `/bin' +Your initial shell path should contain one directory: `/bin` Note: Most shells allow you to specify a binary specifically without using a search path, using either **absolute paths** or **relative paths**. For