summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2012-06-14 18:52:44 +0200
committerArmin Rigo <arigo@tunes.org>2012-06-14 18:52:44 +0200
commit4076a329ecbf4341ff2fb82c5dc0c05592dd5b64 (patch)
tree5e7bd400167061b6b16c37863d5ad39b739728d2 /README.md
parent984ccc2fabdc2256753a0ad431181638b83d991d (diff)
downloadcffi-4076a329ecbf4341ff2fb82c5dc0c05592dd5b64.tar.gz
Links.
Diffstat (limited to 'README.md')
-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.