diff --git a/rijksvideo.module b/rijksvideo.module
index cbceed8..262b56f 100644
--- a/rijksvideo.module
+++ b/rijksvideo.module
@@ -136,7 +136,7 @@ function rijksvideo_preprocess_rijksvideo(&$variables) {
 /**
  * Retrieve the extension of a given file.
  */
-function _rijksvideo_get_file_extention($filename) {
+function _rijksvideo_get_file_extension($filename) {
   return end(explode('.', $filename));
 }
 
@@ -144,7 +144,7 @@ function _rijksvideo_get_file_extention($filename) {
  * Retrieve the icon of a given file extension.
  */
 function _rijksvideo_get_file_icon($file) {
-  $extension = _rijksvideo_get_file_extention($file);
+  $extension = _rijksvideo_get_file_extension($file);
   // Since there is no icon for webm use mp4
   $extension = ($extension == 'webm' ? 'mp4' : $extension );
   return theme('image', array('path' => '//roimg.nl/presentation/shared-ro/images/icon-' . $extension . '.png'));
