summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsnappy.mirrorbot@gmail.com <snappy.mirrorbot@gmail.com@03e5f5b5-db94-4691-08a0-1a8bf15f6143>2011-11-08 14:46:39 +0000
committersnappy.mirrorbot@gmail.com <snappy.mirrorbot@gmail.com@03e5f5b5-db94-4691-08a0-1a8bf15f6143>2011-11-08 14:46:39 +0000
commitb60a5ced174a8c571654ad6eb05ae9da8854b111 (patch)
treea4662be71367b058e11d85db2146d9e27870621f
parentc5d21eae21d910911258018c185f74581f6de939 (diff)
downloadsnappy-b60a5ced174a8c571654ad6eb05ae9da8854b111.tar.gz
Fix public issue #53: Update the README to the API we actually open-sourced
with. R=sanjay git-svn-id: http://snappy.googlecode.com/svn/trunk@52 03e5f5b5-db94-4691-08a0-1a8bf15f6143
-rw-r--r--README4
1 files changed, 2 insertions, 2 deletions
diff --git a/README b/README
index df8f0e1..3bc8888 100644
--- a/README
+++ b/README
@@ -76,11 +76,11 @@ your calling file, and link against the compiled library.
There are many ways to call Snappy, but the simplest possible is
- snappy::Compress(input, &output);
+ snappy::Compress(input.data(), input.size(), &output);
and similarly
- snappy::Uncompress(input, &output);
+ snappy::Uncompress(input.data(), input.size(), &output);
where "input" and "output" are both instances of std::string.