From 002a61c32bccb5db5146b48bcde50cf2efacf9bd Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 27 Mar 2019 11:33:04 -0700 Subject: [PATCH] Fix a missing close paren. --- docs/WASI-tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/WASI-tutorial.md b/docs/WASI-tutorial.md index f14afd4584..d158bbbd0d 100644 --- a/docs/WASI-tutorial.md +++ b/docs/WASI-tutorial.md @@ -113,7 +113,7 @@ which can be used to open files inside that directory. Now when the program calls the C `open` function, passing it either an absolute or relative path, the WASI libc transparently translates that path into a path that's relative to one of the given preopened directories, if possible (using a technique based -on [libpreopen](https://github.com/musec/libpreopen). This way, we can have a +on [libpreopen](https://github.com/musec/libpreopen)). This way, we can have a simple capability-oriented model at the system call level, while portable application code doesn't have to do anything special.