From 4502626fa7a58e7c2a7d0c829a158d87021818b3 Mon Sep 17 00:00:00 2001 From: Isaiah Peng Date: Sat, 14 Feb 2015 22:08:01 +0100 Subject: Google::Protobuf::Map#inspect should be consistent with Hash#inspect --- ruby/ext/google/protobuf_c/map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ruby/ext/google') diff --git a/ruby/ext/google/protobuf_c/map.c b/ruby/ext/google/protobuf_c/map.c index 4ee71d18..12e7a9d9 100644 --- a/ruby/ext/google/protobuf_c/map.c +++ b/ruby/ext/google/protobuf_c/map.c @@ -683,7 +683,7 @@ VALUE Map_inspect(VALUE _self) { first = false; } str = rb_str_append(str, rb_funcall(key, inspect_sym, 0)); - str = rb_str_cat2(str, " => "); + str = rb_str_cat2(str, "=>"); str = rb_str_append(str, rb_funcall(value, inspect_sym, 0)); } -- cgit v1.2.3