summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJon Simantov <jsimantov@google.com>2022-01-25 19:43:08 -0500
committerGitHub <noreply@github.com>2022-01-25 16:43:08 -0800
commit162ad7a37ee741a4c0c9d12da3b5c56e0d199365 (patch)
tree8e844b9272acbd760a4866f6bdd2c8f5ac1a887e /include
parenta0a6c3f8c60b01381d1c97c31a9da0e6db31bf8e (diff)
downloadflatbuffers-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.h2
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.