From 78bae3700471bf17d52be0c103d470a7a5c151d4 Mon Sep 17 00:00:00 2001 From: Alexander Kuleshov Date: Sun, 29 Jan 2017 20:02:07 +0600 Subject: [PATCH] fix typos --- SysCall/README.md | 2 +- SysCall/syscall-5.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SysCall/README.md b/SysCall/README.md index 885ed17..ddf1847 100644 --- a/SysCall/README.md +++ b/SysCall/README.md @@ -6,4 +6,4 @@ This chapter describes the `system call` concept in the linux kernel. * [How the Linux kernel handles a system call](syscall-2.md) - this part describes how the Linux kernel handles a system call from an userspace application. * [vsyscall and vDSO](syscall-3.md) - third part describes `vsyscall` and `vDSO` concepts. * [How the Linux kernel runs a program](syscall-4.md) - this part describes startup process of a program. -* [Implementation of open system call](syscall-5.md) - this part describes implementation of the [open](http://man7.org/linux/man-pages/man2/open.2.html) system call. \ No newline at end of file +* [Implementation of the open system call](syscall-5.md) - this part describes implementation of the [open](http://man7.org/linux/man-pages/man2/open.2.html) system call. \ No newline at end of file diff --git a/SysCall/syscall-5.md b/SysCall/syscall-5.md index 63314b8..b092841 100644 --- a/SysCall/syscall-5.md +++ b/SysCall/syscall-5.md @@ -1,4 +1,4 @@ -How does open system call works +How does the `open` system call work -------------------------------------------------------------------------------- Introduction