| Index: third_party/WebKit/Source/core/editing/commands/TypingCommand.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/TypingCommand.cpp b/third_party/WebKit/Source/core/editing/commands/TypingCommand.cpp
|
| index 0808cfb693689f0d9b95903e2240f6f9ac5709dd..2ebe3b95c85c1fafbd459d311173b393894705d6 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/TypingCommand.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/commands/TypingCommand.cpp
|
| @@ -376,7 +376,7 @@ void TypingCommand::insertParagraphSeparator()
|
| void TypingCommand::insertParagraphSeparatorInQuotedContent()
|
| {
|
| // If the selection starts inside a table, just insert the paragraph separator normally
|
| - // Breaking the blockquote would also break apart the table, which is unecessary when inserting a newline
|
| + // Breaking the blockquote would also break apart the table, which is unnecessary when inserting a newline
|
| if (enclosingNodeOfType(endingSelection().start(), &isTableStructureNode)) {
|
| insertParagraphSeparator();
|
| return;
|
|
|