From d7de41802e7d7f24e3dc709fa571e1e8196bec39 Mon Sep 17 00:00:00 2001 From: Lucas Bremgartner Date: Sun, 13 Mar 2016 15:10:15 +0100 Subject: [PATCH] Fixed typo, added missing ")" Fixes #4812 --- docs/static/contributing-patch.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/static/contributing-patch.asciidoc b/docs/static/contributing-patch.asciidoc index 4baf72784..6c4090ecb 100644 --- a/docs/static/contributing-patch.asciidoc +++ b/docs/static/contributing-patch.asciidoc @@ -308,7 +308,7 @@ require "logstash/outputs/zeromq" require "logstash/devutils/rspec/spec_helper" describe LogStash::Outputs::ZeroMQ do - let(:output) { described_class.new("mode" => "server", "topology" => "pushpull" } + let(:output) { described_class.new("mode" => "server", "topology" => "pushpull") } let(:tracer) { double("logger") } context "when in server mode" do