Verified Commit f3e4294c authored by Dave Long's avatar Dave Long
Browse files

Issue #3409362 by quietone, smustgrave: Fix spelling of some words with 'un' prefix

(cherry picked from commit de952edf2d0f570d1117a92c025940fe56a62983)
parent 12ef050d
Loading
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -2,6 +2,8 @@

namespace Drupal\Composer\Plugin\Scaffold;

// cspell:ignore unmatch

use Composer\IO\IOInterface;
use Composer\Util\ProcessExecutor;

+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ possible; for example, a project layout very similar to the current
[drupal-composer/drupal-project](https://github.com/drupal-composer/drupal-scaffold)
template will also be provided. When one of these projects is used, the user
should be able to use `composer require` and `composer update` on a Drupal site
immediately after untarring the downloaded archive.
immediately after extracting the downloaded archive.

Note that the dependencies of a Drupal site are only able to scaffold files if
explicitly granted that right in the top-level composer.json file. See
+1 −1
Original line number Diff line number Diff line
@@ -187,7 +187,7 @@ public function delete($key) {
   *   The key that was requested.
   * @param bool $persist
   *   (optional) Whether the offset should be persisted or not, defaults to
   *   TRUE. When called with $persist = FALSE the offset will be unflagged so
   *   TRUE. When called with $persist = FALSE the offset will be un-flagged so
   *   that it will not be written at the end of the request.
   */
  protected function persist($key, $persist = TRUE) {
+3 −3
Original line number Diff line number Diff line
@@ -11,9 +11,9 @@
/**
 * Primary front-controller for the database system.
 *
 * This class is uninstantiatable and un-extendable. It acts to encapsulate
 * all control and shepherding of database connections into a single location
 * without the use of globals.
 * This class is un-extendable. It acts to encapsulate all control and
 * shepherding of database connections into a single location without the use of
 * globals.
 */
abstract class Database {

+1 −1
Original line number Diff line number Diff line
@@ -308,7 +308,7 @@ protected static function wrapMailLine(&$line, $key, $values) {
      }
    }
    if (!$line_is_mime_header) {
      // Use soft-breaks only for purely quoted or unindented text.
      // Use soft-breaks only for purely quoted or un-indented text.
      $line = wordwrap($line, 77 - $values['length'], $values['soft'] ? " \n" : "\n");
    }
    // Break really long words at the maximum width allowed.
Loading