summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2009-07-01 19:03:08 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2009-07-01 19:03:08 +0200
commit232fb3d8f486b7da49438e29af3912d00d9fde0d (patch)
treeeca1497d10c729c6ac14613dbd46a5d8293e2644
parent9b92b634310dd947341701754332ebb261671f60 (diff)
slightly improved Simplestore(3pm)
-rw-r--r--lib/Simplestore.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Simplestore.pm b/lib/Simplestore.pm
index b02dfe3..4e878b4 100644
--- a/lib/Simplestore.pm
+++ b/lib/Simplestore.pm
@@ -62,12 +62,12 @@ Simplestore - simple storage format for hash refs
say $hash->{word}; # purrl
$hash->{foo} = 'bar';
- $hash->{word} = "Yeah, this is more thon one\nword, I know";
+ $hash->{word} = "Yeah, this is more than\none word, I know";
save('somefile', $hash);
# somefile contains:
- # word Yeah, this is more than one
- # word word, I know
+ # word Yeah, this is more than
+ # word one word, I know
# foo bar
=head1 DESCRIPTION