Commit 58e27924 authored by nilsocket's avatar nilsocket Committed by Wouter van Oortmerssen

[docs]: add missing semicolon (#5648)

Add missing semicolon for table field.
parent 3c964e10
...@@ -563,7 +563,7 @@ with the new schema now cannot read nor write `a` anymore (any existing code ...@@ -563,7 +563,7 @@ with the new schema now cannot read nor write `a` anymore (any existing code
that tries to do so will result in compile errors), but can still read that tries to do so will result in compile errors), but can still read
old data (they will ignore the field). old data (they will ignore the field).
table { c:int a:int; b:int; } table { c:int; a:int; b:int; }
This is NOT ok, as this makes the schemas incompatible. Old code reading newer This is NOT ok, as this makes the schemas incompatible. Old code reading newer
data will interpret `c` as if it was `a`, and new code reading old data data will interpret `c` as if it was `a`, and new code reading old data
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment