about summary refs log tree commit diff stats
path: root/src/layout/box.nim
diff options
context:
space:
mode:
Diffstat (limited to 'src/layout/box.nim')
-rw-r--r--src/layout/box.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/layout/box.nim b/src/layout/box.nim
index 289fb4cf..a9cc74dd 100644
--- a/src/layout/box.nim
+++ b/src/layout/box.nim
@@ -16,7 +16,7 @@ type
   BoxBuilder* = ref object of RootObj
     children*: seq[BoxBuilder]
     inlinelayout*: bool
-    specified*: CSSComputedValues
+    computed*: CSSComputedValues
     node*: Node
     element*: Element
 
@@ -85,7 +85,7 @@ type
   BlockContext* = ref object of RootObj
     inline*: InlineContext
     nested*: seq[BlockContext]
-    specified*: CSSComputedValues
+    computed*: CSSComputedValues
     viewport*: Viewport
     offset*: Offset
     width*: int