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/