summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md
index 0d5333c..a3ff286 100644
--- a/README.md
+++ b/README.md
@@ -82,8 +82,10 @@ Struct/Array Example
image[0].g = 192
image[0].b = 128
-This can be used as a more flexible replacement of the struct_ and
-array_ modules. You could also call ``ffi.new("pixel_t[600][800]")``
+This can be used as a more flexible replacement of the
+[struct](http://docs.python.org/library/struct.html) and
+[array](http://docs.python.org/library/array.html) modules.
+You could also call ``ffi.new("pixel_t[600][800]")``
and get a two-dimensional array.