From b9f2af6f8790d163c749aef4e7a87da9d33dc2fe Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Mon, 5 Mar 2012 15:48:04 -0800 Subject: [PATCH] fix typo --- docs/contributing.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing.markdown b/docs/contributing.markdown index 36b6b8d01..6bc272f18 100644 --- a/docs/contributing.markdown +++ b/docs/contributing.markdown @@ -99,7 +99,7 @@ If you see bits of code around that do not follow these please don't hesitate to std::string const& variable_name // preferred, for consistency - std::string const& variable_name // no + const std::string & variable_name // no #### Pass built-in types by value, all others by const&