[docs]: add missing semicolon (#5648)

Add missing semicolon for table field.
This commit is contained in:
nilsocket 2019-12-02 22:01:25 +00:00 committed by Wouter van Oortmerssen
parent 3c964e10ab
commit 58e279244c
1 changed files with 1 additions and 1 deletions

View File

@ -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