diff --git a/README.md b/README.md index 4706177..02eaadb 100644 --- a/README.md +++ b/README.md @@ -59,12 +59,8 @@ Third Party Benchmarks *ㅤyou can use a "string pool" to avoid creating multiple instances of strings with same content. This optimization is useful when there are a lot of repeated string values present. In this scenario, it may reduce allocated memory and speed-up processing time. ### Parsing Files -1. Readers - * [Fixed length](#file-reading-for-fixedlengthreader) - * [Variable length](#file-reading-for-variablelengthreader) - * [Variable length raw](#file-reading-for-variablelength-raw) -2. Writers - * [Default Type Convert](#file-processing---write) +1. [Readers](#file-processing---read) +2. [Writers](#file-processing---write) NOTE: MOST EXAMPLES USE TUPLES FOR SIMPLICITY. PARSER ACTUALLY WORKS FOR ANY TYPE (CLASSES, STRUCTS, RECORDS, ARRAYS, TUPLES, ETC)