summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Wey2011-12-31 17:47:45 +0100
committerMike Wey2011-12-31 17:47:45 +0100
commitad9b2a66e9f63fc4a4d1b16e429078d6f4912e11 (patch)
treeaae0c637cb688cae9c9966a2b6a901cb8cc338b6
parentf5f34124173700d7d1ad7ee652b83b859f87381b (diff)
Fix a typo in Image.animationDelay.
-rw-r--r--dmagick/Image.d2
1 files changed, 1 insertions, 1 deletions
diff --git a/dmagick/Image.d b/dmagick/Image.d
index b668184..86c2a5b 100644
--- a/dmagick/Image.d
+++ b/dmagick/Image.d
@@ -3246,7 +3246,7 @@ class Image
imageRef.delay = cast(size_t)(delay.total!"msecs"() * imageRef.ticks_per_second) / 1000;
}
///ditto
- Duration annimationDelay() const
+ Duration animationDelay() const
{
return dur!"msecs"((imageRef.delay * 1000) / imageRef.ticks_per_second);
}