From 34ba86a11c732e41b27ee958cba4e3002691a5a8 Mon Sep 17 00:00:00 2001 From: quicksketch Date: Mon, 15 Apr 2024 10:59:50 -0700 Subject: [PATCH] Fixing typos in variable names. --- commands/content/backdrop_content.drush.inc | 2 +- commands/make/bmake.drush.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/content/backdrop_content.drush.inc b/commands/content/backdrop_content.drush.inc index 026a992..9f5561f 100644 --- a/commands/content/backdrop_content.drush.inc +++ b/commands/content/backdrop_content.drush.inc @@ -8,7 +8,7 @@ * Implements hook_drush_command(). */ function backdrop_content_drush_command() { - $itmes = array(); + $items = array(); $items['backdrop-content-type-list'] = array( 'description' => 'List the content types available on the site.', 'aliases' => array('ctl', 'content-type-list'), diff --git a/commands/make/bmake.drush.inc b/commands/make/bmake.drush.inc index 7cfa0e5..1b5ad55 100755 --- a/commands/make/bmake.drush.inc +++ b/commands/make/bmake.drush.inc @@ -8,7 +8,7 @@ * Implements hook_drush_command(). */ function bmake_drush_command() { - $itmes = array(); + $items = array(); $items['bmake'] = array( 'description' => 'Turns a makefile into a working Backdrop codebase.', 'callback' => 'bmake',