Skip to content

Commit 1f3fc3a

Browse files
committed
Fix typos
1 parent 51e460f commit 1f3fc3a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

assets/query-monitor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ if ( window.jQuery ) {
629629
(function ($) {
630630
$.qm = $.qm || {};
631631
$.qm.tableSort = function (settings) {
632-
// @param object columns NodeList table colums.
632+
// @param object columns NodeList table columns.
633633
// @param integer row_width defines the number of columns per row.
634634
var table_to_array = function (columns, row_width) {
635635
columns = Array.prototype.slice.call(columns, 0);

collectors/assets.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ public function process() {
192192

193193
foreach ( $dependencies as $dep ) {
194194
if ( ! $raw->query( $dep ) ) {
195-
// A missing dependency is a dependecy on an asset that doesn't exist
195+
// A missing dependency is a dependency on an asset that doesn't exist
196196
$missing_dependencies[ $dep ] = true;
197197
}
198198
}

collectors/php_errors.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ protected function output_fatal( $error, array $e ) {
322322
);
323323

324324
// This unused wrapper with an attribute serves to help the #qm-fatal div break out of an
325-
// attribute if a fatal has occured within one.
325+
// attribute if a fatal has occurred within one.
326326
echo '<div data-qm="qm">';
327327

328328
printf(

data/fallback.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php declare(strict_types = 1);
22
/**
3-
* Fallback data transfer object for third-pary collectors that don't extend
3+
* Fallback data transfer object for third-party collectors that don't extend
44
* the new QM_DataCollector class.
55
*
66
* @package query-monitor

0 commit comments

Comments
 (0)