From e4840a2c9eeb545bd010a9cc31d81101eb47b58f Mon Sep 17 00:00:00 2001 From: yegg Date: Thu, 3 May 2012 13:27:07 -0400 Subject: [PATCH] clean up qr code formatting --- lib/DDG/Goodie/QRCode.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/DDG/Goodie/QRCode.pm b/lib/DDG/Goodie/QRCode.pm index 01dd151e904..09e1dcffc8e 100644 --- a/lib/DDG/Goodie/QRCode.pm +++ b/lib/DDG/Goodie/QRCode.pm @@ -17,7 +17,7 @@ handle query_parts => sub { my $html = HTML::Barcode::QRCode->new(text => $str)->render; - $html = qq(
$html
A QR code that says '$str'.
); + $html = qq(
$html
A QR code that means '$str'.
); return '', html => $html; };