From 5afbb043c075e106aa1a5c9b1a063cc884512e6c Mon Sep 17 00:00:00 2001 From: ajoneshs <32287147+ajoneshs@users.noreply.github.com> Date: Fri, 13 Jan 2023 21:26:15 -0500 Subject: [PATCH] Correct book name in README The C Programming Language by Brian Kernighan and Dennis Ritchie only has one volume. This commit replaces "Vol 2" with "2nd Edition". --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cc25457..199c5af 100644 --- a/README.md +++ b/README.md @@ -319,7 +319,7 @@ When I did the study plan, I used 2 languages for most of it: C and Python and algorithms in your bones. In higher level languages like Python or Java, these are hidden from you. In day to day work, that's terrific, but when you're learning how these low-level data structures are built, it's great to feel close to the metal. - C is everywhere. You'll see examples in books, lectures, videos, *everywhere* while you're studying. - - [The C Programming Language, Vol 2](https://www.amazon.com/Programming-Language-Brian-W-Kernighan/dp/0131103628) + - [The C Programming Language, 2nd Edition](https://www.amazon.com/Programming-Language-Brian-W-Kernighan/dp/0131103628) - This is a short book, but it will give you a great handle on the C language and if you practice it a little you'll quickly get proficient. Understanding C helps you understand how programs and memory work. - You don't need to go super deep in the book (or even finish it). Just get to where you're comfortable reading and writing in C.