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

Unified Diff: runtime/observatory/lib/src/elements/script_inset.dart

Issue 2957593002: Spelling fixes e to i. (Closed)
Patch Set: Created 3 years, 6 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
« no previous file with comments | « runtime/lib/timer_impl.dart ('k') | runtime/observatory/lib/src/models/objects/error.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/lib/src/elements/script_inset.dart
diff --git a/runtime/observatory/lib/src/elements/script_inset.dart b/runtime/observatory/lib/src/elements/script_inset.dart
index 8336f7ba6c42269315063f3cdf03dcee14b821bf..f6ded1c3aafddd5be97f505ae4a8ae7dd02b2929 100644
--- a/runtime/observatory/lib/src/elements/script_inset.dart
+++ b/runtime/observatory/lib/src/elements/script_inset.dart
@@ -654,7 +654,7 @@ class ScriptInsetElement extends HtmlElement implements Renderable {
for (int i = _startLine; i <= _endLine; i++) {
var line = script.getLine(i);
if (line.isBlank) {
- // Try to introduce elipses if there are 4 or more contiguous
+ // Try to introduce ellipses if there are 4 or more contiguous
// blank lines.
blankLineCount++;
} else {
@@ -662,12 +662,12 @@ class ScriptInsetElement extends HtmlElement implements Renderable {
int firstBlank = i - blankLineCount;
int lastBlank = i - 1;
if (blankLineCount < 4) {
- // Too few blank lines for an elipsis.
+ // Too few blank lines for an ellipsis.
for (int j = firstBlank; j <= lastBlank; j++) {
table.append(lineElement(script.getLine(j), lineNumPad));
}
} else {
- // Add an elipsis for the skipped region.
+ // Add an ellipsis for the skipped region.
table.append(lineElement(script.getLine(firstBlank), lineNumPad));
table.append(lineElement(null, lineNumPad));
table.append(lineElement(script.getLine(lastBlank), lineNumPad));
@@ -964,7 +964,7 @@ void addInfoBox(Element content, Function infoBoxGenerator) {
infoBox.style.zIndex = '10';
infoBox.style.backgroundColor = 'white';
infoBox.style.cursor = 'auto';
- // Don't inherit pre formating from the script lines.
+ // Don't inherit pre formatting from the script lines.
infoBox.style.whiteSpace = 'normal';
content.append(infoBox);
}
« no previous file with comments | « runtime/lib/timer_impl.dart ('k') | runtime/observatory/lib/src/models/objects/error.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698