about summary refs log tree commit diff stats
path: root/src/html/dom.nim
diff options
context:
space:
mode:
Diffstat (limited to 'src/html/dom.nim')
-rw-r--r--src/html/dom.nim6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/html/dom.nim b/src/html/dom.nim
index e5d871ba..2fa50e3b 100644
--- a/src/html/dom.nim
+++ b/src/html/dom.nim
@@ -57,9 +57,9 @@ type
     FORM_ENCODING_TYPE_TEXT_PLAIN = "text/plain"
 
 type DocumentReadyState* = enum
-  READY_STATE_LOADING = "loading"
-  READY_STATE_INTERACTIVE = "interactive"
-  READY_STATE_COMPLETE = "complete"
+  rsLoading = "loading"
+  rsInteractive = "interactive"
+  rsComplete = "complete"
 
 type
   Location = ref object