diff --git a/core/lib/Drupal/Core/Database/Driver/mysql/Schema.php b/core/lib/Drupal/Core/Database/Driver/mysql/Schema.php
index c8b4171..37efb97 100644
--- a/core/lib/Drupal/Core/Database/Driver/mysql/Schema.php
+++ b/core/lib/Drupal/Core/Database/Driver/mysql/Schema.php
@@ -510,8 +510,8 @@ class Schema extends DatabaseSchema {
     // the most likely reason is that it does not exist. That is dramatically
     // faster than using information_schema.
     // @link http://bugs.mysql.com/bug.php?id=19588
-    // @todo: This override should be removed once we require a version of MySQL
-    // that has that bug fixed.
+    // @todo This override should be removed once we require a version of MySQL
+    //   that has that bug fixed.
     try {
       $this->connection->queryRange("SELECT 1 FROM {" . $table . "}", 0, 1);
       return TRUE;
@@ -527,8 +527,8 @@ class Schema extends DatabaseSchema {
     // fails, the most likely reason is that it does not exist. That is
     // dramatically faster than using information_schema.
     // @link http://bugs.mysql.com/bug.php?id=19588
-    // @todo: This override should be removed once we require a version of MySQL
-    // that has that bug fixed.
+    // @todo This override should be removed once we require a version of MySQL
+    //   that has that bug fixed.
     try {
       $this->connection->queryRange("SELECT $column FROM {" . $table . "}", 0, 1);
       return TRUE;
diff --git a/core/lib/Drupal/Core/Database/Driver/sqlite/Install/Tasks.php b/core/lib/Drupal/Core/Database/Driver/sqlite/Install/Tasks.php
index 8866ef2..4f0e16b 100644
--- a/core/lib/Drupal/Core/Database/Driver/sqlite/Install/Tasks.php
+++ b/core/lib/Drupal/Core/Database/Driver/sqlite/Install/Tasks.php
@@ -21,7 +21,7 @@ class Tasks extends InstallTasks {
   /**
    * Minimum engine version.
    *
-   * @todo: consider upping to 3.6.8 in Drupal 8 to get SAVEPOINT support.
+   * @todo Consider upping to 3.6.8 in Drupal 8 to get SAVEPOINT support.
    */
   public function minimumVersion() {
     return '3.3.7';
diff --git a/core/lib/Drupal/Core/StreamWrapper/LocalStream.php b/core/lib/Drupal/Core/StreamWrapper/LocalStream.php
index 0cd76e0..b6e1dd1 100644
--- a/core/lib/Drupal/Core/StreamWrapper/LocalStream.php
+++ b/core/lib/Drupal/Core/StreamWrapper/LocalStream.php
@@ -44,7 +44,8 @@ abstract class LocalStream implements StreamWrapperInterface {
 
   /**
    * Gets the path that the wrapper is responsible for.
-   * @TODO: Review this method name in D8 per http://drupal.org/node/701358
+   *
+   * @todo Review this method name in D8 per http://drupal.org/node/701358.
    *
    * @return string
    *   String specifying the path.
diff --git a/core/lib/Drupal/Core/Updater/Updater.php b/core/lib/Drupal/Core/Updater/Updater.php
index 2dca5ba..5a484cf 100644
--- a/core/lib/Drupal/Core/Updater/Updater.php
+++ b/core/lib/Drupal/Core/Updater/Updater.php
@@ -112,8 +112,8 @@ class Updater {
   /**
    * Gets the name of the project directory (basename).
    *
-   * @todo: It would be nice, if projects contained an info file which could
-   *        provide their canonical name.
+   * @todo It would be nice, if projects contained an info file which could
+   *   provide their canonical name.
    *
    * @param string $directory
    *
@@ -213,7 +213,7 @@ class Updater {
       $this->makeWorldReadable($filetransfer, $args['install_dir'] . '/' . $this->name);
 
       // Run the updates.
-      // @TODO: decide if we want to implement this.
+      // @todo Decide if we want to implement this.
       $this->postUpdate();
 
       // For now, just return a list of links of things to do.
@@ -252,7 +252,7 @@ class Updater {
       $this->makeWorldReadable($filetransfer, $args['install_dir'] . '/' . $this->name);
 
       // Potentially enable something?
-      // @TODO: decide if we want to implement this.
+      // @todo Decide if we want to implement this.
       $this->postInstall();
       // For now, just return a list of links of things to do.
       return $this->postInstallTasks();
@@ -286,7 +286,7 @@ class Updater {
         }
         catch (FileTransferException $e) {
           // Probably still not writable. Try to chmod and do it again.
-          // @todo: Make a new exception class so we can catch it differently.
+          // @todo Make a new exception class so we can catch it differently.
           try {
             $old_perms = substr(sprintf('%o', fileperms($parent_dir)), -4);
             $filetransfer->chmod($parent_dir, 0755);
diff --git a/core/lib/Drupal/Core/Updater/UpdaterInterface.php b/core/lib/Drupal/Core/Updater/UpdaterInterface.php
index 6d789ce..50a1409 100644
--- a/core/lib/Drupal/Core/Updater/UpdaterInterface.php
+++ b/core/lib/Drupal/Core/Updater/UpdaterInterface.php
@@ -45,7 +45,7 @@ interface UpdaterInterface {
   /**
    * Determines if the Updater can handle the project provided in $directory.
    *
-   * @todo: Provide something more rational here, like a project spec file.
+   * @todo Provide something more rational here, like a project spec file.
    *
    * @param string $directory
    *
