Fix Range.END_TO_END constant
diff --git a/packages/dom/src/text-quote.js b/packages/dom/src/text-quote.js
index e7d1391..7484f65 100644
--- a/packages/dom/src/text-quote.js
+++ b/packages/dom/src/text-quote.js
@@ -24,7 +24,7 @@
 
 // Range constants
 const START_TO_START = 0;
-const END_TO_END = 1;
+const END_TO_END = 2;
 
 function textContent(scope) {
   return scope instanceof Object && 'textContent' in scope