From 61618d1e95147f6cb86de52956287338dfe48600 Mon Sep 17 00:00:00 2001 From: Praedor <44412031+Praedor@users.noreply.github.com> Date: Sat, 23 Feb 2019 17:44:43 -0500 Subject: [PATCH] Corrected Grammar Mistake (#27225) Acronyms are meant to be capitalized and (optional) periods between letters. --- guide/english/computer-science/compilers/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/computer-science/compilers/index.md b/guide/english/computer-science/compilers/index.md index 45c44cb93c9..b23ff5c8bcd 100644 --- a/guide/english/computer-science/compilers/index.md +++ b/guide/english/computer-science/compilers/index.md @@ -4,7 +4,7 @@ title: Compilers ## Compilers ### Programming -At its heart, a barebones computer (aka a stored program computer) is nothing but a machine which knows how to read steps written in a fixed instruction set and execute the same. The set of instructions a computer understands is very specific to it. This is also known as machine language (**opcodes**). Machine Language is often referred to as Binary Code. +At its heart, a barebones computer (A.K.A. a stored program computer) is nothing but a machine which knows how to read steps written in a fixed instruction set and execute the same. The set of instructions a computer understands is very specific to it. This is also known as machine language (**opcodes**). Machine Language is often referred to as Binary Code. Humans interact with computers using **Programs**. A program is simply a sequence of opcodes provided to the computer along with data that is necessary for executing the opcodes.