From 1e8f54e28d212cf518c1d144e890ec2ff9bbd3d0 Mon Sep 17 00:00:00 2001 From: sem pruijs Date: Mon, 22 Jan 2024 13:44:00 +0100 Subject: [PATCH] change 2 to two --- coding-with-eyes-closed/src/02-0-motivation.md | 2 +- coding-with-eyes-closed/src/05-1-compiler.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/coding-with-eyes-closed/src/02-0-motivation.md b/coding-with-eyes-closed/src/02-0-motivation.md index 093d5e3..5a4a96a 100644 --- a/coding-with-eyes-closed/src/02-0-motivation.md +++ b/coding-with-eyes-closed/src/02-0-motivation.md @@ -3,7 +3,7 @@ I wrote my first line of code when I was about 11 years old. I had a great interest in ios app development and making games in unity. Game development was nice because I could make the art, music and the code by myself. -But this all changed about 2 years ago. +But this all changed about two years ago. I was diagnosed with Leber Hereditary Optic Neuropathy (LHON). This is a genetic disease which brought my vision from 100% to 1% in 6 months. I was 16 and I had to do things differently. diff --git a/coding-with-eyes-closed/src/05-1-compiler.md b/coding-with-eyes-closed/src/05-1-compiler.md index 6bebcbf..fc2edb8 100644 --- a/coding-with-eyes-closed/src/05-1-compiler.md +++ b/coding-with-eyes-closed/src/05-1-compiler.md @@ -10,7 +10,7 @@ The trick is to not use that sight to search for errors. The compiler should search for errors. This idea is not new at all, but many coders do not listen to this advice at all. -As I am writing this, the 2 most popular programming languages are javascript and python. +As I am writing this, the two most popular programming languages are javascript and python. Neither of these languages implement this idea well enough. Javascript says so many times stuff like ```object is undefined``` or ```null is undefined```. The compiler just has no idea what kind of mistake the coder made.