Rename flatbuffer base.msg to base.inner

This better disambiguates with the msg_generated.ts module, which in JS
we call "fbs", but would be better called "msg".
This commit is contained in:
Ryan Dahl 2018-10-03 21:12:23 -04:00
parent 51dc46eff4
commit f774953011
21 changed files with 204 additions and 204 deletions

View file

@ -37,6 +37,6 @@ function req(
fbs.Truncate.startTruncate(builder);
fbs.Truncate.addName(builder, name_);
fbs.Truncate.addLen(builder, len);
const msg = fbs.Truncate.endTruncate(builder);
return [builder, fbs.Any.Truncate, msg];
const inner = fbs.Truncate.endTruncate(builder);
return [builder, fbs.Any.Truncate, inner];
}