From 7bd9384cc41d66f4fa7d1ef3247f62b88f7b7f95 Mon Sep 17 00:00:00 2001
From: kotsifa2 <kotsifa2@illinois.edu>
Date: Thu, 23 Jan 2020 19:03:59 -0600
Subject: [PATCH] Minor edits to documentation

---
 hpvm/docs/hpvm-specification.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/hpvm/docs/hpvm-specification.md b/hpvm/docs/hpvm-specification.md
index 57e7fe65ef..d5c9e00417 100644
--- a/hpvm/docs/hpvm-specification.md
+++ b/hpvm/docs/hpvm-specification.md
@@ -39,13 +39,13 @@ In an HPVM program, the host code is responsible for setting up, initiating the
 - **Initialization and Cleanup**:
 All HPVM operations must be enclosed by the HPVM initialization and cleanup. These operations perform initialization and cleanup of runtime constructs that provide the runtime support for HPVM.
 - **Track Memory**:
-Memory objects that are passed to dataflow graphs need to be managed by the HPVM runtime. The HPVM runtime includes a memory tracker for recording the location of HPVM-managed memory objects. Track memory starts tracking specified memory object.
+Memory objects that are passed to dataflow graphs need to be managed by the HPVM runtime. The HPVM runtime includes a memory tracker for recording the location, or tracking, of HPVM-managed memory objects. Track memory starts tracking specified memory object.
 - **Untrack Memory**:
 Stop tracking specified memory object.
 - **Request Memory**:
 If the specified memory object is not present in host memory, copy it to host memory.
 - **Launch**:
-The host code initiates execution of specified DFG, either streaming or non streaming, and passes initial data. All data for one graph execution must be provided.
+The host code initiates execution of specified DFG, either streaming or non streaming, and provides initial data. All data for one graph execution must be provided.
 - **Wait**:
 The host code blocks for completion of specified DFG.
 - **Push**:
-- 
GitLab