From b694d583d4c8e8c67b7fed6d2b0feab0386bc447 Mon Sep 17 00:00:00 2001 From: kotsifa2 <kotsifa2@illinois.edu> Date: Fri, 24 Jan 2020 11:43:24 -0600 Subject: [PATCH] Missing period. --- hpvm/docs/hpvm-c.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hpvm/docs/hpvm-c.md b/hpvm/docs/hpvm-c.md index 95463ed10b..77bc684b16 100644 --- a/hpvm/docs/hpvm-c.md +++ b/hpvm/docs/hpvm-c.md @@ -45,7 +45,7 @@ Binds the output ```op``` of the current node to output ```oc``` of child node f ```void __hpvm__hint(enum Target target)``` (C\) ```void __hpvm__hint(hpvm::Target target)``` (C++) -Must be called once in each node function. Indicates which hardware target the current function should run in +Must be called once in each node function. Indicates which hardware target the current function should run in. ```void __hpvm__attributes(unsigned ni, …, unsigned no, …)``` Must be called once at the beginning of each node function. Defines the properties of the pointer arguments to the current function. ```ni``` represents the number of input arguments, and ```no``` the number of output arguments. The arguments following ```ni``` are the input arguments, and the arguments following ```no``` are the output arguments. Arguments can be marked as both input and output. All pointer arguments must be included. -- GitLab