diff options
author | Jon Simantov <jsimantov@google.com> | 2022-01-25 19:43:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-25 16:43:08 -0800 |
commit | 162ad7a37ee741a4c0c9d12da3b5c56e0d199365 (patch) | |
tree | 8e844b9272acbd760a4866f6bdd2c8f5ac1a887e /include | |
parent | a0a6c3f8c60b01381d1c97c31a9da0e6db31bf8e (diff) | |
download | flatbuffers-162ad7a37ee741a4c0c9d12da3b5c56e0d199365.tar.gz flatbuffers-162ad7a37ee741a4c0c9d12da3b5c56e0d199365.tar.bz2 flatbuffers-162ad7a37ee741a4c0c9d12da3b5c56e0d199365.zip |
Fix comment with line orders - Rust should be last. (#7037)
Fix for #6867.
Diffstat (limited to 'include')
-rw-r--r-- | include/flatbuffers/idl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/flatbuffers/idl.h b/include/flatbuffers/idl.h index ef5bf122..1be07953 100644 --- a/include/flatbuffers/idl.h +++ b/include/flatbuffers/idl.h @@ -72,8 +72,8 @@ namespace flatbuffers { // - Go type. // - C# / .Net type. // - Python type. -// - Rust type. // - Kotlin type. +// - Rust type. // using these macros, we can now write code dealing with types just once, e.g. |