From 2848b4a4dcae05d12cfdefd10a268aa691e79011 Mon Sep 17 00:00:00 2001
From: kotsifa2 <kotsifa2@illinois.edu>
Date: Fri, 24 Jan 2020 11:30:33 -0600
Subject: [PATCH] Minor syntax fix in hpvm spec

---
 hpvm/docs/hpvm-specification.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hpvm/docs/hpvm-specification.md b/hpvm/docs/hpvm-specification.md
index 048b9bd545..c3706faa27 100644
--- a/hpvm/docs/hpvm-specification.md
+++ b/hpvm/docs/hpvm-specification.md
@@ -129,7 +129,7 @@ The following intrinsics are used for memory allocation and synchronization. The
 
 ```i8* llvm.hpvm.malloc(i64 nBytes)```  
 Allocate a block of memory of size ```nBytes``` and return pointer to it. The allocated object can be shared by all nodes.  
-*Note that the pointer returned must somehow be communicated explicitly for use by other nodes.*
+*Note that the returned pointer must somehow be communicated explicitly for use by other nodes.*
 
 ```i32 llvm.hpvm.atomic.add(i8* m, i32 v)```  
 Atomically computes the bitwise ADD of ```v``` and the value stored at memory location ```[m]``` w.r.t. the dynamic instances of the current leaf node and stores the result back into ```[m]```. Returns the value previously stored at ```[m]```.
-- 
GitLab