From 784c7d75ec994b9d78a9c251d8294ec789b02b92 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 13 Apr 2016 07:28:52 +0000 Subject: [PATCH] Docs: Fix typo in a comment in `wp-admin/js/postbox.js`. Props yoavf. Fixes #36349. git-svn-id: https://develop.svn.wordpress.org/trunk@37195 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/js/postbox.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/js/postbox.js b/src/wp-admin/js/postbox.js index 36673a9007..15cdecc923 100644 --- a/src/wp-admin/js/postbox.js +++ b/src/wp-admin/js/postbox.js @@ -110,7 +110,7 @@ var postboxes; tolerance: 'pointer', forcePlaceholderSize: true, helper: function( event, element ) { - // `helper: 'clone'` is equilavalent to `return element.clone();` + // `helper: 'clone'` is equivalent to `return element.clone();` // Cloning a checked radio and then inserting that clone next to the original // radio unchecks the original radio (since only one of the two can be checked). // We get around this by renaming the helper's inputs' name attributes so that,