about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--README.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/README.md b/README.md
index d178c33..6633325 100644
--- a/README.md
+++ b/README.md
@@ -31,6 +31,8 @@ import openbsd
 
 ### pledge
 
+See: https://man.openbsd.org/pledge.2
+
 ```python
 openbsd.pledge("stdio rpath")
 print(open("/etc/resolv.conf"))
@@ -40,6 +42,8 @@ Try removing the`rpath permission.
 
 ### unveil
 
+See: https://man.openbsd.org/unveil.2
+
 ```python
 openbsd.unveil("/etc", "r")
 print(open("/etc/resolv.conf"))