Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Unified Diff: third_party/WebKit/LayoutTests/jquery/resources/test/unit/manipulation.js

Issue 2157963002: Improve grammar in some comments. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: maxiumum Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/jquery/resources/test/unit/manipulation.js
diff --git a/third_party/WebKit/LayoutTests/jquery/resources/test/unit/manipulation.js b/third_party/WebKit/LayoutTests/jquery/resources/test/unit/manipulation.js
index 34425ed3a4c9c54ca795b823f022c3fa6560b3f5..6cf47b6fba617417c8bc433446579e2f7ec77163 100644
--- a/third_party/WebKit/LayoutTests/jquery/resources/test/unit/manipulation.js
+++ b/third_party/WebKit/LayoutTests/jquery/resources/test/unit/manipulation.js
@@ -9,7 +9,7 @@ var functionReturningObj = function(value) { return (function() { return value;
test("text()", function() {
expect(2);
var expected = "This link has class=\"blog\": Simon Willison's Weblog";
- equals( jQuery('#sap').text(), expected, 'Check for merged text of more then one element.' );
+ equals( jQuery('#sap').text(), expected, 'Check for merged text of more than one element.' );
// Check serialization of text values
equals( jQuery(document.createTextNode("foo")).text(), "foo", "Text node was retreived from .text()." );
@@ -48,7 +48,7 @@ test("text(Function) with incoming value", function() {
return "foobar";
});
- equals( jQuery("#sap").text(), "foobar", 'Check for merged text of more then one element.' );
+ equals( jQuery("#sap").text(), "foobar", 'Check for merged text of more than one element.' );
QUnit.reset();
});

Powered by Google App Engine
This is Rietveld 408576698