From 341b64cc962f8ff69a37d7e20f6d94c7d5658ca7 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Fri, 22 Apr 2016 09:58:40 +0100 Subject: [PATCH] Formula-Cookbook: better `inreplace` example. Make multiple replacements if using the block form. --- share/doc/homebrew/Formula-Cookbook.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/share/doc/homebrew/Formula-Cookbook.md b/share/doc/homebrew/Formula-Cookbook.md index 8aa29bbf16..ab51d431ef 100644 --- a/share/doc/homebrew/Formula-Cookbook.md +++ b/share/doc/homebrew/Formula-Cookbook.md @@ -373,11 +373,12 @@ A convenience function that can edit files in-place. For example: `inreplace "path", before, after` -`before` and `after` can be strings or regular expressions. You can also use the block form: +`before` and `after` can be strings or regular expressions. You should use the block form if you need to make multiple replacements in a file: ```ruby inreplace "path" do |s| s.gsub! /foo/, "bar" + s.gsub! "123", "456" end ```