From 0f92c927ee36c9dbdda399402123a10c677bff55 Mon Sep 17 00:00:00 2001 From: Piper Chester Date: Mon, 21 Nov 2016 22:48:23 -0800 Subject: [PATCH] Fix minor typos in comment block --- src/omPrefixes.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/omPrefixes.js b/src/omPrefixes.js index 33a14a9ba5..4c4063bd10 100644 --- a/src/omPrefixes.js +++ b/src/omPrefixes.js @@ -1,11 +1,11 @@ define(function() { /** - * If the browsers follow the spec, then they would expose vendor-specific style as: + * If the browsers follow the spec, then they would expose vendor-specific styles as: * elem.style.WebkitBorderRadius - * instead of something like the following, which would be technically incorrect: + * instead of something like the following (which is technically incorrect): * elem.style.webkitBorderRadius - * Webkit ghosts their properties in lowercase but Opera & Moz do not. + * WebKit ghosts their properties in lowercase but Opera & Moz do not. * Microsoft uses a lowercase `ms` instead of the correct `Ms` in IE8+ * erik.eae.net/archives/2008/03/10/21.48.10/