Details
Description
Hi Team,
There is a bug in document, that needs to be corrected.
Document Link "http://www.couchbase.com/develop/net/current"
Issue reported : 'Instantiating the Client' section
public static class CouchbaseManager
{
private readonly static CouchbaseClient _instance;
static CouchbaseClient()
{
_instance = new CouchbaseClient();
}
public static CouchbaseClient Instance { get { return _instance; } }
}
Error to be rectified : 4th line static CouchbaseClient() should be -> static CouchbaseManager()
There is a bug in document, that needs to be corrected.
Document Link "http://www.couchbase.com/develop/net/current"
Issue reported : 'Instantiating the Client' section
public static class CouchbaseManager
{
private readonly static CouchbaseClient _instance;
static CouchbaseClient()
{
_instance = new CouchbaseClient();
}
public static CouchbaseClient Instance { get { return _instance; } }
}
Error to be rectified : 4th line static CouchbaseClient() should be -> static CouchbaseManager()
Activity
- All
- Comments
- Work Log
- History
- Activity
- Gerrit Reviews