diff --git a/doku.php b/doku.php
index b7d9ec0ebf3a8b157b5c86c9cf00068d67452f4f..99fa14fb90019ef7d75e40968fa369a32776b402 100644
--- a/doku.php
+++ b/doku.php
@@ -47,10 +47,10 @@ $PRE = cleanText(substr($INPUT->post->str('prefix'), 0, -1));
 $SUF = cleanText($INPUT->post->str('suffix'));
 $SUM = $INPUT->post->str('summary');
 
-//make infos about the selected page available
+//make info about the selected page available
 $INFO = pageinfo();
 
-//export minimal infos to JS, plugins can add more
+//export minimal info to JS, plugins can add more
 $JSINFO['id']        = $ID;
 $JSINFO['namespace'] = (string) $INFO['namespace'];
 
diff --git a/inc/RemoteAPICore.php b/inc/RemoteAPICore.php
index 74c6689acf397e056bbf48455412003ab91bc5f3..2eb8ea4038ff0073b5c825e39a56fbf71db88cf2 100644
--- a/inc/RemoteAPICore.php
+++ b/inc/RemoteAPICore.php
@@ -88,12 +88,12 @@ class RemoteAPICore {
             ), 'wiki.getPageInfo' => array(
                 'args' => array('string'),
                 'return' => 'array',
-                'doc' => 'Returns a struct with infos about the page.',
+                'doc' => 'Returns a struct with info about the page.',
                 'name' => 'pageInfo'
             ), 'wiki.getPageInfoVersion' => array(
                 'args' => array('string', 'int'),
                 'return' => 'array',
-                'doc' => 'Returns a struct with infos about the page.',
+                'doc' => 'Returns a struct with info about the page.',
                 'name' => 'pageInfo'
             ), 'wiki.getPageVersions' => array(
                 'args' => array('string', 'int'),
@@ -136,7 +136,7 @@ class RemoteAPICore {
             ), 'wiki.getAttachmentInfo' => array(
                 'args' => array('string'),
                 'return' => 'array',
-                'doc' => 'Returns a struct with infos about the attachment.'
+                'doc' => 'Returns a struct with info about the attachment.'
             ), 'dokuwiki.getXMLRPCAPIVersion' => array(
                 'args' => array(),
                 'name' => 'getAPIVersion',
diff --git a/inc/actions.php b/inc/actions.php
index 5a59d852d730d8bd63f7ef2ebdd473c766016048..50cbe369f8b0bd3f493c86f34bd415adc4c2e4f1 100644
--- a/inc/actions.php
+++ b/inc/actions.php
@@ -53,7 +53,7 @@ function act_dispatch(){
             }
         }
 
-        //display some infos
+        //display some info
         if($ACT == 'check'){
             check();
             $ACT = 'show';
diff --git a/inc/media.php b/inc/media.php
index a9f6be7710816cee4d95034d538c3849a05fc063..6b87960e1d309221786e1c22a7638f36453595d6 100644
--- a/inc/media.php
+++ b/inc/media.php
@@ -1484,7 +1484,7 @@ function media_printfile_thumbs($item,$auth,$jump=false,$display_namespace=false
 }
 
 /**
- * Prints a thumbnail and metainfos
+ * Prints a thumbnail and metainfo
  */
 function media_printimgdetail($item, $fullscreen=false){
     // prepare thumbnail
diff --git a/lib/exe/detail.php b/lib/exe/detail.php
index e3c81d877f5346e9ec50cd19ec64fda0cff3e927..cd3f362ad69b460016ce9e1e055e3db2da0a503e 100644
--- a/lib/exe/detail.php
+++ b/lib/exe/detail.php
@@ -6,7 +6,7 @@ require_once(DOKU_INC.'inc/init.php');
 $IMG  = getID('media');
 $ID   = cleanID($INPUT->str('id'));
 
-// this makes some general infos available as well as the info about the
+// this makes some general info available as well as the info about the
 // "parent" page
 $INFO = array_merge(pageinfo(),mediainfo());
 
diff --git a/lib/plugins/acl/admin.php b/lib/plugins/acl/admin.php
index b24981d91be2acfeeaef8c1c37c181a51d581cd9..6c7c28ff680ca6aa525f5f2c3369b9467670a8ac 100644
--- a/lib/plugins/acl/admin.php
+++ b/lib/plugins/acl/admin.php
@@ -345,7 +345,7 @@ class admin_plugin_acl extends DokuWiki_Admin_Plugin {
     }
 
     /**
-     * Print infos and editor
+     * Print info and editor
      */
     function _html_info(){
         global $ID;