From ca3ca559f125ae042547d0446eaf630c25a7e681 Mon Sep 17 00:00:00 2001 From: James Flowers Date: Sun, 15 Mar 2015 00:01:27 -0400 Subject: [PATCH] Fix Grammatical Errors --- Theory/ELF.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Theory/ELF.md b/Theory/ELF.md index 7c9b313..325b343 100644 --- a/Theory/ELF.md +++ b/Theory/ELF.md @@ -5,7 +5,7 @@ ELF (Executable and Linkable Format) is a standard file format for executable fi An ELF object file consists of the following parts: -* ELF header - describes the main characteristics of the object file: type, CPU architecture, the virtual address of the entry point, the size and offset the remaining parts and etc...; +* ELF header - describes the main characteristics of the object file: type, CPU architecture, the virtual address of the entry point, the size and offset the remaining parts, etc...; * Program header table - listing the available segments and their attributes. Program header table need loaders for placing sections of the file as virtual memory segments; * Section header table - contains description of the sections. @@ -13,10 +13,10 @@ Now let's look closer on these components. **ELF header** -It located in the beginning of the object file. It's main point is to locate all other parts of the object file. File header contains following fields: +It's located in the beginning of the object file. It's main point is to locate all other parts of the object file. File header contains following fields: * ELF identification - array of bytes which helps to identify the file as an ELF object file and also provides information about general object file characteristic; -* Object file type - identifies the object file type. This field can describe that ELF file is relocatable object file, executable file and etc...; +* Object file type - identifies the object file type. This field can describe that ELF file is relocatable object file, executable file, etc...; * Target architecture; * Version of the object file format; * Virtual address of the program entry point;