| Index: third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
|
| diff --git a/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h b/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
|
| index 7dde907d1d0eda6a537bc2149e85949858be2356..47a050e58179e7c0626d76705adb7207da0e75ff 100644
|
| --- a/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
|
| +++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
|
| @@ -41,7 +41,7 @@ class CORE_EXPORT DocumentMarker : public NoBaseWillBeGarbageCollected<DocumentM
|
| public:
|
| enum MarkerTypeIndex {
|
| SpellingMarkerIndex = 0,
|
| - GramarMarkerIndex,
|
| + GrammarMarkerIndex,
|
| TextMatchMarkerIndex,
|
| InvisibleSpellcheckMarkerIndex,
|
| CompositionMarkerIndex,
|
| @@ -50,7 +50,7 @@ public:
|
|
|
| enum MarkerType {
|
| Spelling = 1 << SpellingMarkerIndex,
|
| - Grammar = 1 << GramarMarkerIndex,
|
| + Grammar = 1 << GrammarMarkerIndex,
|
| TextMatch = 1 << TextMatchMarkerIndex,
|
| InvisibleSpellcheck = 1 << InvisibleSpellcheckMarkerIndex,
|
| Composition = 1 << CompositionMarkerIndex,
|
|
|