From 1bb7dfcafd223fd02639d99d6e3a4472df05b8e5 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Wed, 17 Jul 2013 11:21:58 -0500 Subject: [PATCH] Escape interpolation examples --- Library/Homebrew/formula_cellar_checks.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/formula_cellar_checks.rb b/Library/Homebrew/formula_cellar_checks.rb index fc8d2be5e7..db4fab7538 100644 --- a/Library/Homebrew/formula_cellar_checks.rb +++ b/Library/Homebrew/formula_cellar_checks.rb @@ -18,7 +18,7 @@ module FormulaCellarChecks ['A top-level "man" directory was found.', <<-EOS.undent Homebrew requires that man pages live under share. - This can often be fixed by passing "--mandir=#{man}" to configure. + This can often be fixed by passing "--mandir=\#{man}" to configure. EOS ] end @@ -30,7 +30,7 @@ module FormulaCellarChecks ['A top-level "info" directory was found.', <<-EOS.undent Homebrew suggests that info pages live under share. - This can often be fixed by passing "--infodir=#{info}" to configure. + This can often be fixed by passing "--infodir=\#{info}" to configure. EOS ] end