RejectedSoftware Forums

Sign up

Minor Documentation Error

Re: Minor Documentation Error

On Fri, 06 Sep 2013 17:57:04 GMT, Craig Dillabaugh wrote:

Sorry, about that.

I think the documentation for the MongoDB client should be updated at:

http://vibed.org/docs#mongo

The line

logInfo("Found entry: %s", cast(Json)doc);

should read:

logInfo("Found entry: %s", doc.toJson() );

As the usage shown has been deprecated.

Re: Minor Documentation Error

On Fri, 06 Sep 2013 17:59:11 GMT, Craig Dillabaugh wrote:

On Fri, 06 Sep 2013 17:57:04 GMT, Craig Dillabaugh wrote:

Sorry, about that.

I think the documentation for the MongoDB client should be updated at:

http://vibed.org/docs#mongo

The line

logInfo("Found entry: %s", cast(Json)doc);

should read:

logInfo("Found entry: %s", doc.toJson() );

As the usage shown has been deprecated.

Since this is a simple error to correct, is there any way to make a pull request against the Vibe.D homepage (like you can do with the D site for example)?

I notice that some of the Vibe content is available on the gitHub repo, but http://vibed.org/docs isn't (unless it is there in plain view and I am just missing it).

Re: Minor Documentation Error

On Mon, 09 Sep 2013 21:06:36 GMT, Craig Dillabaugh wrote:

On Fri, 06 Sep 2013 17:59:11 GMT, Craig Dillabaugh wrote:

On Fri, 06 Sep 2013 17:57:04 GMT, Craig Dillabaugh wrote:

Sorry, about that.

I think the documentation for the MongoDB client should be updated at:

http://vibed.org/docs#mongo

The line

logInfo("Found entry: %s", cast(Json)doc);

should read:

logInfo("Found entry: %s", doc.toJson() );

As the usage shown has been deprecated.

Since this is a simple error to correct, is there any way to make a pull request against the Vibe.D homepage (like you can do with the D site for example)?

I notice that some of the Vibe content is available on the gitHub repo, but http://vibed.org/docs isn't (unless it is there in plain view and I am just missing it).

It's in this template: https://github.com/rejectedsoftware/vibed.org/blob/master/views/docs.dt

Thanks for the notice, I've just quickly corrected it now (not yet online) so that additional pull request work isn't necessary.