diff --git a/content/news/this-week-in-redox-32.md b/content/news/this-week-in-redox-32.md
index a433200a823752c300f87b059cd3fe4d8f7fa45b..bad36a1f57b606ed846f1773b5666d3c64b34896 100644
--- a/content/news/this-week-in-redox-32.md
+++ b/content/news/this-week-in-redox-32.md
@@ -1,7 +1,7 @@
 +++
 title = "This Week in Redox 32"
 author = "goyox86"
-date = "2017-11-14 11:39:07 +0000"
+date = "2017-11-16 11:39:07 +0000"
 +++
 
 This is the 32nd post of a series of blog posts tracking the development and progress of Redox, the Rust operating system. If you want to know more about Redox in general, visit our [Github page](https://github.com/redox-os/redox).
@@ -22,39 +22,39 @@ This week [@jackpot51](https://github.com/jackpot51) surprised us by sharing thi
 
 ![cargo on Redox](https://chat.redox-os.org/files/qnmgh4pcefdg5xs1uda9ekby7a/public?h=O9WYJaxO_3GjDPRTDIhAUdK5KPH8UWRFOwo7TOnHNvs).
 
-Yes! it's `cargo` running on Redox. This milestone represents a significant step forward on our path to self-hosting. Kudos to [@ids1024](https://github.com/ids1024) who worked really hard on self-hosting during the GSoC! 
+Yes! it's `cargo` running on Redox! This milestone represents a significant step forward on our path to self-hosting. Kudos to [@ids1024](https://github.com/ids1024) who worked really hard on self-hosting during the GSoC.
 
-It's worth mentioning that `cargo` and `rustc` have been [@jackpot51](https://github.com/jackpot51)'s focus these last two weeks and many changes are directly related (but not limited) to this effort. 
+It's worth mentioning that `cargo` and `rustc` have been [@jackpot51](https://github.com/jackpot51)'s focus these last two weeks and many changes are directly related (but not limited) to this effort.
 
 So, without further do, let's give you an overview of what happened this week in the Redox universe!
 
-I'm gonna start with the [book](https://github.com/redox-os/book/) where [@sajattack](https://github.com/sajattack) has been doing some updates on installation and build instructions.
+I'm gonna start with the [book](https://github.com/redox-os/book/) where [@sajattack](https://github.com/sajattack) made some updates on installation and build instructions.
 
-Moving to the [kernel](https://github.com/redox-os/kernel/), [@jackpot51](https://github.com/jackpot51) was focused on implementing `cargo` and `rustc` missing pieces, specifically: implementing timeouts for futexes and improving interruption detection while [@pzmarzly](https://github.com/pzmarzly) made a fix on `elf.rs` to not inline some constants from `goblin`.
+Moving to the [kernel](https://github.com/redox-os/kernel/), [@jackpot51](https://github.com/jackpot51) was focused on implementing the remaining `cargo` and `rustc` missing pieces, specifically: timeouts for futexes and improving interruption detection. Also in the kernel, [@pzmarzly](https://github.com/pzmarzly) made a fix on `elf.rs` to prevent the inlining of some constants from `goblin`.
 
-As always the [Ion](https://github.com/redox-os/ion) shell saw a lot of work. Including: the introduction of a new fork abstraction which will hopefully help to eliminate some redundancy caused by the manual handling of forking logic in two different areas: command expansions and function prompts. There was also `readln` and quote termination refactorings ans the elimnation of Heap allocations with `!*` designator. All of that thanks to [@mmstick](https://github.com/mmstick). Also in **Ion**, [@ids1024](https://github.com/ids1024) added the `set_var()` and `get_var()` methods to `IonLibrary` while [@KaKnife](https://github.com/KaKnife) was busy implementing the `random` builtin in addition to [@AgustinCB](https://github.com/AgustinCB) implementing `escape` and `unescape`.
+As always the [Ion](https://github.com/redox-os/ion) shell saw a lot of work. Including the introduction of a new fork abstraction, which will hopefully help to eliminate some redundancy caused by the manual handling of forking logic in command expansions and function prompts. There were also `readln` and quote termination refactorings as well as the elimination of heap allocations with `!*` designator. All of that thanks to [@mmstick](https://github.com/mmstick). [@ids1024](https://github.com/ids1024) also worked on in **Ion**, adding the `set_var()` and `get_var()` methods to `IonLibrary` while [@KaKnife](https://github.com/KaKnife) was busy implementing the `random` builtin in addition to [@AgustinCB](https://github.com/AgustinCB) implementing `escape` and `unescape` as well as a major optimization to perform builtin Lookup when parsing now the builtin lookup once when parsing the statement, rather than performing a lookup for a given builtin command for each statement repeatedly.
 
-This week, I saw a new contributor super active in the chat asking many questions and trying to port stuff to Redox. The result: the addition of recipes for `vim`, `jansson` and `ssh` to the [cookbook](https://github.com/redox-os/cookbook). That is super cool [@sajattack](https://github.com/sajattack)! 
+This week, I saw a new contributor super active in the chat, asking many questions, and trying to port stuff to Redox. The result: the addition of recipes for `vim`, `jansson` and `openssh` to the [cookbook](https://github.com/redox-os/cookbook). Give it up for [@sajattack](https://github.com/sajattack)!
 
-Continuing in the **cookbook**: [@xTibor](https://github.com/xTibor) added recipe version to `vttest` recipe, along with lots of activity from [@jackpot51](https://github.com/jackpot51) who cleaned up LLVM build in Rust recipe, improved build speed of the Rust recipe, fixed `llvm-config`'s path, cleaned up compilation of Rust and some more! Meanwhile [@AgustinCB](https://github.com/AgustinCB) focused efforts on fixing the `xz` recipe.
+Continuing in the **cookbook**: [@xTibor](https://github.com/xTibor) added recipe version to `vttest` recipe, along with lots of activity from [@jackpot51](https://github.com/jackpot51) who cleaned up LLVM the build and improved build speed of the `rust` recipe, fixed `llvm-config`'s path. Meanwhile [@AgustinCB](https://github.com/AgustinCB) focused efforts on fixing the `xz` recipe. Also, [@xTibor](https://github.com/xTibor) added a `periodictable` recipe.
 
-In the [Orbtk](https://github.com/redox-os/orbtk) side of things, [@BojanKogoj](https://github.com/BojanKogoj) added `clear()` to `Grid` along with some examples. The [Orbterm](https://github.com/redox-os/orbterm) emulator saw a bunch of updates, mostly related to bumping of the [ransid](https://github.com/redox-os/ransid) dependency who experienced a bunch of improvements such as: some fixes to overflow, improvements on the `vt100` compliance, better `vttest`, enhancements on the parsing of nested control characters along the usage of use of VTE for lower level state machine.
+On the [Orbtk](https://github.com/redox-os/orbtk) side of things, [@BojanKogoj](https://github.com/BojanKogoj) added `clear()` to `Grid` plus some examples. Continuing on the GUI work, the [Orbterm](https://github.com/redox-os/orbterm) emulator saw a bunch of updates, mostly related to bumping of the [ransid](https://github.com/redox-os/ransid) dependency who experienced a bunch of improvements: fixes to overflow, improvements on the `vt100` compliance, better `vttest` performance and few enhancements to the parsing of nested control characters.
 
-Moving to the [pkgutils](https://github.com/redox-os/pkgutils), few issues related to dependency resolution were adressed, and now we are retrieveing the dependency list from repo.
+Moving onto [pkgutils](https://github.com/redox-os/pkgutils), few issues related to dependency resolution were adressed, and now we are retrieveing the dependency list from repo.
 
-A quick glimpse to the utilities land reveals a new small new crate: [redox_users](https://github.com/redox-os/users). Basically, we moved all of the users and groups functionality there (along with few new goodies and documentation improvements), functionality that was previously embedded on [userutils](https://github.com/redox-os/userutils) which was not optimal. This was done by [@goyox86](https://github.com/goyox86) as part of his ongoing work on porting the [exa](https://github.com/ogham/exa) to Redox. 
+A quick glimpse to the utilities land reveals a new small new crate: [redox_users](https://github.com/redox-os/users). Basically, we moved all of the users and groups functionality there (along with few new goodies and documentation improvements), functionality that was previously embedded on [userutils](https://github.com/redox-os/userutils) which was not optimal. This was done by [@goyox86](https://github.com/goyox86) as part of his ongoing work on porting the [exa](https://github.com/ogham/exa) to Redox.
 
-The [userutils](https://github.com/redox-os/userutils/) and [userutils](https://github.com/redox-os/coreutils/) packages were updated to **redox_users** along with some general refactoring and cleanup.
+The [userutils](https://github.com/redox-os/userutils/) and [coreutils](https://github.com/redox-os/coreutils/) packages were updated to **redox_users** in addition to some general refactoring and cleanup.
 
-And last but not least, [newlib](https://github.com/redox-os/newlib) our C library got some attention from [@sajattack](https://github.com/sajattack) who removed include of nonexistent endian.h file, added all the headers necessary for `openssh` to compile, replaced `glibc` headers with newlib ones where possible, added the `ssh` dependencies and  implemented `scandir()` and `alphasort()`.
+And last but not least, [newlib](https://github.com/redox-os/newlib) our C library got some attention from [@sajattack](https://github.com/sajattack) who removed include of nonexistent endian.h file, added all the headers necessary for `openssh` to compile, replaced `glibc` headers with newlib ones where possible and  implemented `scandir()` and `alphasort()`.
 
-See you next time, hopefully with `rustc` compiling some interesting crates ;)!
+Now I let you with the details. See you next time, hopefully with `rustc` compiling some interesting crates ;)!
 
 ## Book
 
 The Redox book.
 
-- [@sajattack](https://github.com/sajattack) Made a change to highlight we need `cargo install xargo`. Details [here](https://github.com/redox-os/book/commit/12e3c55d8536b13445da0688f607f366b75c41e5).
+- [@sajattack](https://github.com/sajattack) Made a change to highlight the fact that we need `cargo install xargo`. Details [here](https://github.com/redox-os/book/commit/12e3c55d8536b13445da0688f607f366b75c41e5).
 - [@sajattack](https://github.com/sajattack) Updated the build preparation intructions. Details [here](https://github.com/redox-os/book/commit/040ff9ca62a9c7c79b1a7768f34b7a222a4006e3).
 - [@sajattack](https://github.com/sajattack) Updated the toolchain installation instructions. Details [here](https://github.com/redox-os/book/commit/e387551b36000acb22ca31a9be8f7f2d9d154475).
 
@@ -65,7 +65,7 @@ The Redox microkernel.
 - [@sajattack](https://github.com/sajattack) Added a LOC badge. Details [here](https://github.com/redox-os/kernel/pull/61).
 - [@jackpot51](https://github.com/jackpot51) Implemented futex timeouts. Details [here](https://github.com/redox-os/kernel/commit/9e9f80ef13bfa4aa03c29db35cc67de97bd1f5e7).
 - [@pzmarzly](https://github.com/pzmarzly) Made a fix on `elf.rs` to not inline constant from goblin library. Details [here](https://github.com/redox-os/kernel/pull/63).
-- [@jackpot51](https://github.com/jackpot51) Removed `SwitchResult`, used out of band data to detect interruption, and updated debugging code. Details [here](https://github.com/redox-os/kernel/commit/ed055640119d7078d9b9ec1aea6ebc99dd1c6a43).
+- [@jackpot51](https://github.com/jackpot51) Removed `SwitchResult`, used out of band data to detect interruption and updated debugging code. Details [here](https://github.com/redox-os/kernel/commit/ed055640119d7078d9b9ec1aea6ebc99dd1c6a43).
 
 ## Ion
 
@@ -73,14 +73,14 @@ The Ion Shell. Compatible with Redox and Linux.
 
 - [@Eijebong](https://github.com/Eijebong) Bumped `bitflags` to 1.0. Details [here](https://github.com/redox-os/ion/pull/568).
 - [@mmstick](https://github.com/mmstick) Made process expansions to allow access to stdin. Builtin commands like read aren't working yet.. Details [here](https://github.com/redox-os/ion/commit/becfbfb83499b32beb1ff0e9bfb23f243938cb03).
-- [@mmstick](https://github.com/mmstick) Created fork abstraction w/ cmd expans & fn prompts. Details [here](https://github.com/redox-os/ion/commit/2529362cf2e0210984b430c0683cdb08a5d7e2a6).
+- [@mmstick](https://github.com/mmstick) Created fork abstraction with cmd expansions and fn prompts. Details [here](https://github.com/redox-os/ion/commit/2529362cf2e0210984b430c0683cdb08a5d7e2a6).
 - [@mmstick](https://github.com/mmstick) Refactored `readln` logic into it's own module. Details [here](https://github.com/redox-os/ion/commit/9f8e9e539fb62f7513f33ff110d1a3253bad2c3c).
 - [@mmstick](https://github.com/mmstick) Refactored quote termination logic. Details [here](https://github.com/redox-os/ion/commit/a09aa7d6fb1c0e607be15fd4eb05faa8e0859fcc).
-- [@mmstick](https://github.com/mmstick) Made a change when expanding arguments, if an argument evaluates to an empty argument, simply ignore the argument as if it didn't exist. Details [here](https://github.com/redox-os/ion/commit/2d49c5932b8885a74fb3f3344e49626f82d2da21).
+- [@mmstick](https://github.com/mmstick) Made a change when expanding arguments: if an argument evaluates to an empty argument, simply ignore the argument as if it didn't exist. Details [here](https://github.com/redox-os/ion/commit/2d49c5932b8885a74fb3f3344e49626f82d2da21).
 - [@mmstick](https://github.com/mmstick) Implemented superior word designator support. Details [here](https://github.com/redox-os/ion/commit/dff4a0bf024b87a2fcb57730c70230965ed94cf3).
-- [@mmstick](https://github.com/mmstick) Sorted the builtins & used binary search with lookups. Details [here](https://github.com/redox-os/ion/commit/98bfa8976f023888586ade9d51548b8fb10aa15f).
-- [@mmstick](https://github.com/mmstick) Improved public API with fork method. Details [here](https://github.com/redox-os/ion/commit/89c1de8e70baf38c7cdf27e6ec504a8db80b611f).
-- [@mmstick](https://github.com/mmstick) Further public API improvements. Details [here](https://github.com/redox-os/ion/commit/6d1e42289b98a0a1e696c0372ec7612ada5f161e).
+- [@mmstick](https://github.com/mmstick) Sorted the builtins and used binary search with lookups. Details [here](https://github.com/redox-os/ion/commit/98bfa8976f023888586ade9d51548b8fb10aa15f).
+- [@mmstick](https://github.com/mmstick) Improved public API with `fork` method. Details [here](https://github.com/redox-os/ion/commit/89c1de8e70baf38c7cdf27e6ec504a8db80b611f).
+- [@mmstick](https://github.com/mmstick) Made further public API improvements. Details [here](https://github.com/redox-os/ion/commit/6d1e42289b98a0a1e696c0372ec7612ada5f161e).
 - [@ids1024](https://github.com/ids1024) Made `IonError` derive debug. Details [here](https://github.com/redox-os/ion/pull/571).
 - [@ids1024](https://github.com/ids1024) Added `set_var()` and `get_var()` methods to `IonLibrary`. Details [here](https://github.com/redox-os/ion/pull/572).
 - [@mmstick](https://github.com/mmstick) Further public API Improvements. The `IonLibrary` interface was removed, and integrated directly, within the shell's main module. Details [here](https://github.com/redox-os/ion/commit/fffdddcd64b15f6edb2c92b2a4638044ac51544a).
@@ -88,15 +88,15 @@ The Ion Shell. Compatible with Redox and Linux.
 - [@mmstick](https://github.com/mmstick) Implemented the `execute_function()` method for public API. Details [here](https://github.com/redox-os/ion/commit/7a7c796df33818220ee706fceafbd1f20a9b5757).
 - [@ids1024](https://github.com/ids1024) Added a `get_array()` method to the public API. Details [here](https://github.com/redox-os/ion/pull/576).
 - [@mmstick](https://github.com/mmstick) Replace `sys::getpid()` with `process::id()`. Details [here](https://github.com/redox-os/ion/commit/e9dd8f1a9bf41104e21236b996aa6e12d683bf58).
-- [@mmstick](https://github.com/mmstick) Handled signals with forks, Closing #577. Details [here](https://github.com/redox-os/ion/commit/079a2367641ad0bc60b673e2e55cb29914fce09b).
+- [@mmstick](https://github.com/mmstick) Handled signals with forks, closing #577. Details [here](https://github.com/redox-os/ion/commit/079a2367641ad0bc60b673e2e55cb29914fce09b).
 - [@mmstick](https://github.com/mmstick) Eliminated Heap allocation with `!*` designator. Details [here](https://github.com/redox-os/ion/commit/576182b49181cdf4a3196f0134d3294202b40e12).
 - [@mmstick](https://github.com/mmstick) Refactored the `binary` module. Details [here](https://github.com/redox-os/ion/commit/2200d4a0d93a4b29c9eecd8f41428070f6e23de4).
 - [@mmstick](https://github.com/mmstick) Made some assignment optimizations. Details [here](https://github.com/redox-os/ion/commit/b4e426f3e525841dea2507b4ae7a3a3b88543c2a).
 - [@AgustinCB](https://github.com/AgustinCB) Escaped unescape. Details [here](https://github.com/redox-os/ion/pull/579).
-- [@KaKnife](https://github.com/KaKnife) Added `--help` argument & `random` builtin. Partial fix for issue #528. Details [here](https://github.com/redox-os/ion/pull/580).
+- [@KaKnife](https://github.com/KaKnife) Added `--help` argument and the `random` builtin. Partial fix for issue #528. Details [here](https://github.com/redox-os/ion/pull/580).
 - [@mmstick](https://github.com/mmstick) Enhanced the fork API & simplified the public API. Details [here](https://github.com/redox-os/ion/commit/4dd8e58c5b55b273c213ab4bd37924eb5356b8ca).
 - [@KaKnife](https://github.com/KaKnife) Documented builtins. Details [here](https://github.com/redox-os/ion/pull/583).
-- [@mmstick](https://github.com/mmstick) Fixed builtin documentatio style. Details [here](https://github.com/redox-os/ion/commit/7bfa1789267176e515cd157f4504c15cdd29d91c).
+- [@mmstick](https://github.com/mmstick) Fixed builtin documentation style. Details [here](https://github.com/redox-os/ion/commit/7bfa1789267176e515cd157f4504c15cdd29d91c).
 - [@AgustinCB](https://github.com/AgustinCB) Implemented `escape` & `unescape` Methods (#579). Details [here](https://github.com/redox-os/ion/commit/2f176ebe1010b4ebd9e2a9031ad354e598cdee9c).
 - [@AgustinCB](https://github.com/AgustinCB) Made a major optimization: Perform Builtin Lookup when parsing (#587). Rather than performing a lookup for a given builtin command for each statement repeatedly, we now perform the builtin lookup once when parsing the statement. Details [here](https://github.com/redox-os/ion/pull/587).
 - [@AgustinCB](https://github.com/AgustinCB) Made `./examples/run_examples.sh` loudly fail. Details [here](https://github.com/redox-os/ion/commit/649fc1f7e62da0e5fbb471cd625d29e6a1bba336).
@@ -112,7 +112,7 @@ A collection of package recipes for Redox.
 - [@xTibor](https://github.com/xTibor) Added recipe version to `vttest` recipe. Details [here](https://github.com/redox-os/cookbook/pull/95).
 - [@sajattack](https://github.com/sajattack) Fixed `vim.patch`. Details [here](https://github.com/redox-os/cookbook/pull/96).
 - [@sajattack](https://github.com/sajattack) Change `ssh` recipe to use custom branch of `newlib`. Details [here](https://github.com/redox-os/cookbook/pull/97).
-- [@jackpot51](https://github.com/jackpot51) Updated pkgutils. Details [here](https://github.com/redox-os/cookbook/commit/6b6568f7941f27e8431d8bbe72565fc7faf281be).
+- [@jackpot51](https://github.com/jackpot51) Updated `pkgutils`. Details [here](https://github.com/redox-os/cookbook/commit/6b6568f7941f27e8431d8bbe72565fc7faf281be).
 - [@jackpot51](https://github.com/jackpot51) Fixed `prboom` recipe. Details [here](https://github.com/redox-os/cookbook/commit/b913b258f7c6cad0329ecf752983907e3ed900c0).
 - [@sajattack](https://github.com/sajattack) Created `jansson.patch` in the `jansson`. Details [here](https://github.com/redox-os/cookbook/pull/98).
 - [@xTibor](https://github.com/xTibor) Added `periodictable` recipe. Details [here](https://github.com/redox-os/cookbook/pull/99).
@@ -163,15 +163,15 @@ Rust ANSI Driver - a backend for terminal emulators in Rust.
 - [@jackpot51](https://github.com/jackpot51) Used VTE for lower level state machine. Details [here](https://github.com/redox-os/ransid/commit/39579630a023e914957e7e8d32ca61e2d134f1ca).
 - [@jackpot51](https://github.com/jackpot51) Added `test` pattern. Details [here](https://github.com/redox-os/ransid/commit/41396f208f932b9349af00b1b982342d51efc265).
 - [@jackpot51](https://github.com/jackpot51) Handled parameters. Details [here](https://github.com/redox-os/ransid/commit/f25f9a24fad345e7b4e8c2af0a893330b77a5777).
-- [@jackpot51](https://github.com/jackpot51) Fixe `ESC D` and `ESC E` behavior. Details [here](https://github.com/redox-os/ransid/commit/c0dd20c31266199882b06851c4f658181b9089d8).
+- [@jackpot51](https://github.com/jackpot51) Fixed `ESC D` and `ESC E` behavior. Details [here](https://github.com/redox-os/ransid/commit/c0dd20c31266199882b06851c4f658181b9089d8).
 - [@jackpot51](https://github.com/jackpot51) Fixed some wrapping behaviors. Details [here](https://github.com/redox-os/ransid/commit/8b24ae5cd4e334afa277fc7075f8ea5672d7f71e).
-- [@jackpot51](https://github.com/jackpot51) Fixe CSI m. Details [here](https://github.com/redox-os/ransid/commit/687cc864911eed89a68d819fbf1c95cc34426bfb).
+- [@jackpot51](https://github.com/jackpot51) Fixe CSI `m`. Details [here](https://github.com/redox-os/ransid/commit/687cc864911eed89a68d819fbf1c95cc34426bfb).
 - [@jackpot51](https://github.com/jackpot51) Implemented titlebar. Details [here](https://github.com/redox-os/ransid/commit/9478c7e02c2d5e43ef78a7931b8fb2b176c16aa8).
 - [@jackpot51](https://github.com/jackpot51) Released `0.4.0`. Details [here](https://github.com/redox-os/ransid/commit/73c74d90c5514bc3eb36ec1e6009140be1e40f7f).
-- [@jackpot51](https://github.com/jackpot51) Disable `xenl`. Details [here](https://github.com/redox-os/ransid/commit/c94322362a4c7fbb6e37fe6e087c4ccd174ec624).
+- [@jackpot51](https://github.com/jackpot51) Disabled `xenl`. Details [here](https://github.com/redox-os/ransid/commit/c94322362a4c7fbb6e37fe6e087c4ccd174ec624).
 - [@jackpot51](https://github.com/jackpot51) Released 0.4.1. Details [here](https://github.com/redox-os/ransid/commit/a74e5c0b7097cb985505c3a26721e677645c7048).
-- [@jackpot51](https://github.com/jackpot51) Released 0.4.2 - fix cursor before printing char. Details [here](https://github.com/redox-os/ransid/commit/6ac43395a59e600e1649d2b007d85e878546278d).
-- [@jackpot51](https://github.com/jackpot51) Released 0.4.3 - Fix pb. Details [here](https://github.com/redox-os/ransid/commit/5958b37254a9d7ae58af2adc7d0b90a97355edf7).
+- [@jackpot51](https://github.com/jackpot51) Released 0.4.2 - Which fixes cursor before printing char. Details [here](https://github.com/redox-os/ransid/commit/6ac43395a59e600e1649d2b007d85e878546278d).
+- [@jackpot51](https://github.com/jackpot51) Released 0.4.3 - Fixing `pb`. Details [here](https://github.com/redox-os/ransid/commit/5958b37254a9d7ae58af2adc7d0b90a97355edf7).
 
 ## Users
 
@@ -192,7 +192,7 @@ Redox OS APIs for accessing users and groups information.
 User and group management utilities.
 
 - [@goyox86](https://github.com/goyox86) Migrated to the new `redox_users` crate, some refactoring and docs. Details [here](https://github.com/redox-os/userutils/pull/14).
-- [@goyox86](https://github.com/goyox86) Updated README and made some docs tweaks. Details [here](https://github.com/redox-os/userutils/pull/15).
+- [@goyox86](https://github.com/goyox86) Updated README and some more documentation tweaks. Details [here](https://github.com/redox-os/userutils/pull/15).
 
 ## Coreutils
 
@@ -206,7 +206,7 @@ A fork of newlib from git://sourceware.org/git/newlib-cygwin.git with Redox supp
 
 - [@sajattack](https://github.com/sajattack) Removed include of nonexistent endian.h file. Details [here](https://github.com/redox-os/newlib/pull/67).
 - [@sajattack](https://github.com/sajattack) Added all the headers necessary for `openssh` to compile. Details [here](https://github.com/redox-os/newlib/pull/68).
-- [@sajattack](https://github.com/sajattack) Replace `glibc` headers with newlib ones where possible. Details [here](https://github.com/redox-os/newlib/pull/69).
+- [@sajattack](https://github.com/sajattack) Replaced `glibc` headers with newlib ones where possible. Details [here](https://github.com/redox-os/newlib/pull/69).
 - [@sajattack](https://github.com/sajattack) Removed `ioctl.h` and revert netdb.h for breaking ncurses and bash. Details [here](https://github.com/redox-os/newlib/pull/70).
 - [@sajattack](https://github.com/sajattack) Removed `un.h` for breaking openssl. Details [here](https://github.com/redox-os/newlib/pull/71).
 - [@sajattack](https://github.com/sajattack) Added `ssh` dependencies. Details [here](https://github.com/redox-os/newlib/pull/72).
@@ -223,16 +223,16 @@ A fork of newlib from git://sourceware.org/git/newlib-cygwin.git with Redox supp
 7. [The Extreme Screenshots](http://www.redox-os.org/screens/)
 
 # New contributors
- 
+
 Since the list of contributors are growing too fast, we'll now only list the new contributors. This might change in the future.
 
 Sorted in alphabetical order.
 
+- [@AgustinCB](https://github.com/AgustinCB) 🎂
+- [@BojanKogoj](https://github.com/BojanKogoj) 🎂
 - [@dlrobertson](https://github.com/dlrobertson) 🎂
+- [@Eijebong](https://github.com/Eijebong) 🎂
 - [@gbutler69](https://github.com/gbutler69) 🎂
 - [@pzmarzly](https://github.com/pzmarzly) 🎂
-- [@Eijebong](https://github.com/Eijebong) 🎂
-- [@AgustinCB](https://github.com/AgustinCB) 🎂
-- [@BojanKogoj](https://github.com/BojanKogoj) 🎂
 
 If I missed something, feel free to contact me [@goyox86](https://github.com/goyox86) or send a PR to [Redox website](https://github.com/redox-os/website).