From 58e279244c800041d0934a01ed80d9a0502170df Mon Sep 17 00:00:00 2001 From: nilsocket Date: Mon, 2 Dec 2019 22:01:25 +0000 Subject: [PATCH] [docs]: add missing semicolon (#5648) Add missing semicolon for table field. --- docs/source/Schemas.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/Schemas.md b/docs/source/Schemas.md index 403aebbe0..bd37f418d 100644 --- a/docs/source/Schemas.md +++ b/docs/source/Schemas.md @@ -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 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 data will interpret `c` as if it was `a`, and new code reading old data