Skip to content

Commit 1016632

Browse files
authored
Minor typo fixes, and table syntax fixes (#110)
1 parent c6d97a8 commit 1016632

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

08_VirtualFileSystem/02_VirtualFileSystem.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ To keep our design simple, the features of our VFS driver will be:
1010

1111
## How The VFS Works
1212

13-
The basic concept of a VFS layer is pretty simple, we can see it like a common way to access files/directories across different file systems, it is a layer that sits between the higher level interface to the FS and the low level implementation of the FS driver, as shown in the picture
13+
The basic concept of a VFS layer is pretty simple, we can see it like a common way to access files/directories across different file systems, it is a layer that sits between the higher level interface to the FS and the low level implementation of the FS driver, as shown in the picture:
1414

1515
![Where the VFS sits in an OS](/Images/vfs_layer.png)
1616

10_Going_Beyond/01_Going_Beyond.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ The Application layer instead are usually the protocols we want to implement, so
253253
254254
When we want to send data, we start from the topmost layer (the application) and go down the whole stack until the network layer adding some extra information on each level. The extra information is the layer header and footer (if needed), so when the data has reached the last level it will have all the technical information for each level. This is described in the picture below.
255255
256-
On the other way a packet received from the network will observe the opposite path, so it will start as a big packet containing headers/footers for each layer, and while it is traversing the stack upwards, at every layer it will have the layer's header stripped, so when it will reach the Application Layer it will be the information we are looking for (you can just look at the picture from bottom to top.
256+
On the other way a packet received from the network will observe the opposite path, so it will start as a big packet containing headers/footers for each layer, and while it is traversing the stack upwards, at every layer it will have the layer's header stripped, so when it will reach the Application Layer it will be the information we are looking for (you can just look at the picture from bottom to top):
257257
258258
![TCP/IP Layers](/Images/tcpip.png)
259259

0 commit comments

Comments
 (0)