String typo in C SDK tutorial sample code

Hello
Thanks for raising this.
I have logged a JIRA here : http://www.couchbase.com/issues/browse/CCBC-173
Regards

I’m not sure where the best place to report typos is, but this seems like a good place so:
In the couchbase-sdk-c-2.0.pdf tutorial sample code, there’s a typo in an error string:

{
lcb_store_cmd_t cmd;
const lcb_store_cmd_t *commands[1];
commands[0] = &cmd;
memset(&cmd, 0, sizeof(cmd));
cmd.v.v0.operation = LCB_SET;
cmd.v.v0.key = “foo”;
cmd.v.v0.nkey = 3;
cmd.v.v0.bytes = “bar”;
cmd.v.v0.nbytes = 3;
err = lcb_store(instance, NULL, 1, commands);
if (err != LCB_SUCCESS) {
fprintf(stderr, “Failed to get: %s\n”, lcb_strerror(NULL, err));
return 1;
}
}

The err code there is for a set operation, so the error string in the fprintf call should say “Failed to set” not “Failed to get”.