From b0673e7a06d7e6d0a17aecd84c87b238f84a3477 Mon Sep 17 00:00:00 2001 From: Michael Aquilina Date: Sun, 4 Oct 2015 23:06:16 +0100 Subject: [PATCH] Correct it's -> its --- DataStructures/dlist.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DataStructures/dlist.md b/DataStructures/dlist.md index 7537c16..0050256 100644 --- a/DataStructures/dlist.md +++ b/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)