From f56696f4785ec879fc6798591a2e809dd7e503a4 Mon Sep 17 00:00:00 2001
From: Richard Hartmann <RichiH@users.noreply.github.com>
Date: Thu, 26 Jul 2018 21:55:42 +0200
Subject: [PATCH] rlimit_posix.go: Use backticks for shell code (#2235)

---
 rlimit_posix.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rlimit_posix.go b/rlimit_posix.go
index 6b4af3eb9..dc9b2959e 100644
--- a/rlimit_posix.go
+++ b/rlimit_posix.go
@@ -31,7 +31,7 @@ func checkFdlimit() {
 	err := syscall.Getrlimit(syscall.RLIMIT_NOFILE, rlimit)
 	if err == nil && rlimit.Cur < min {
 		fmt.Printf("WARNING: File descriptor limit %d is too low for production servers. "+
-			"At least %d is recommended. Fix with \"ulimit -n %d\".\n", rlimit.Cur, min, min)
+			"At least %d is recommended. Fix with `ulimit -n %d`.\n", rlimit.Cur, min, min)
 	}
 
 }