aboutsummaryrefslogtreecommitdiffstats
path: root/P1/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'P1/README.md')
-rw-r--r--P1/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/P1/README.md b/P1/README.md
index e1374cc..2eaec00 100644
--- a/P1/README.md
+++ b/P1/README.md
@@ -14,7 +14,7 @@ The purpose of this program is to recreate the mapreduce programming model for B
```mapreduce.c:```
Mapreduce is the master phase of this program. It is responsible for calling the mapper and reducer processes. It will wait for each process to finish executing before exiting the code.
-````mapper.c:```
+```mapper.c:```
Mapper receives a chunk of data and emits it into an intermediate data structure, which is a two-level linked list. writeIntermediateDS() formats the data, writing each word and its associated "1's" in the form "word 1 1 1..." to its own file, word.txt.
```reducer.c:```