From 0dd17a2603aad6bedeacef28b91c8078c447bb7a Mon Sep 17 00:00:00 2001 From: Maximilian Goisser Date: Tue, 15 Jan 2019 11:15:52 +0100 Subject: [PATCH] Add missing "to" (#521) --- .../second-edition/posts/09-paging-introduction/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/content/second-edition/posts/09-paging-introduction/index.md b/blog/content/second-edition/posts/09-paging-introduction/index.md index 5b8fb756..c01ae2ad 100644 --- a/blog/content/second-edition/posts/09-paging-introduction/index.md +++ b/blog/content/second-edition/posts/09-paging-introduction/index.md @@ -76,7 +76,7 @@ The fragmentation problem is one of the reasons that segmentation is no longer u ## Paging -The idea is to divide both the virtual and the physical memory space into small, fixed-size blocks. The blocks of the virtual memory space are called _pages_ and the blocks of the physical address space are called _frames_. Each page can be individually mapped to a frame, which makes it possible split larger memory regions across non-continuous physical frames. +The idea is to divide both the virtual and the physical memory space into small, fixed-size blocks. The blocks of the virtual memory space are called _pages_ and the blocks of the physical address space are called _frames_. Each page can be individually mapped to a frame, which makes it possible to split larger memory regions across non-continuous physical frames. The advantage of this becomes visible if we recap the example of the fragmented memory space, but use paging instead of segmentation this time: