Corrected Grammar Mistake (#27225)

Acronyms are meant to be capitalized and (optional) periods between letters.
pull/27989/head^2
Praedor 2019-02-23 17:44:43 -05:00 committed by Randell Dawson
parent 82e42bc21c
commit 61618d1e95
1 changed files with 1 additions and 1 deletions

View File

@ -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.