From 162ad7a37ee741a4c0c9d12da3b5c56e0d199365 Mon Sep 17 00:00:00 2001 From: Jon Simantov Date: Tue, 25 Jan 2022 19:43:08 -0500 Subject: [PATCH] Fix comment with line orders - Rust should be last. (#7037) Fix for #6867. --- include/flatbuffers/idl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/flatbuffers/idl.h b/include/flatbuffers/idl.h index ef5bf1222..1be079536 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.