diff --git a/site/content/entry/yuzu-progress-report-may-2021/index.md b/site/content/entry/yuzu-progress-report-may-2021/index.md index eb9af73f..b66a5d5f 100644 --- a/site/content/entry/yuzu-progress-report-may-2021/index.md +++ b/site/content/entry/yuzu-progress-report-may-2021/index.md @@ -92,7 +92,7 @@ All of this costs the user 2*MB* of RAM instead of the previous 1*MB*. Such a he The kernel — that is, the part of an operating system that controls the resources of the machine where it is installed — organises some of the parameters of these resources (e.g. process `identifiers`, `priorities`, file `share` and `open` modes, etc.) into units called `kernel objects`, which are then stored in memory for future reference. -Thus, bunnei [migrated old implementation of kernel objects to KAutoObjects](https://github.com/yuzu-emu/yuzu/pull/6266), +Thus, bunnei [migrated our old implementation of kernel objects to KAutoObjects](https://github.com/yuzu-emu/yuzu/pull/6266), which is part of the newly written implementations that have been added in the past months to match more closely how the kernel of the Nintendo Switch works. This was a big change that involved refactoring the codebase for consistency and fleshing out the implementation of various existing kernel objects and their definitions to match the new behaviour correctly.