We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As the doc, connect should return a bool. So the line https://github.com/pintsized/ledge/blob/2474cab721dc300b1dbc6ba40121283ba44bea47/lib/ledge.lua#L228 should be replaced by return driver, nil; And the bool new() on the doc should be change.
connect
bool
return driver, nil;
bool new()
While I return nil(return nil for no max) on get_max_size method, here will throw an error(attempt to compare nil with number).
return nil for no max
get_max_size
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As the doc,
connect
should return abool
.So the line
https://github.com/pintsized/ledge/blob/2474cab721dc300b1dbc6ba40121283ba44bea47/lib/ledge.lua#L228
should be replaced by
return driver, nil;
And the
bool new()
on the doc should be change.While I return nil(
return nil for no max
) onget_max_size
method, here will throw an error(attempt to compare nil with number).The text was updated successfully, but these errors were encountered: