浏览代码

Correct it's -> its

Michael Aquilina 9 年之前
父节点
当前提交
b0673e7a06
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      DataStructures/dlist.md

+ 1 - 1
DataStructures/dlist.md

@@ -124,7 +124,7 @@ In the next step after the device is created with the `device_create` function,
 list_add(&misc->list, &misc_list);
 ```
 
-Kernel `list.h` provides this API for the addition of a new entry to the list. Let's look at it's implementation:
+Kernel `list.h` provides this API for the addition of a new entry to the list. Let's look at its implementation:
 
 ```C
 static inline void list_add(struct list_head *new, struct list_head *head)