Skip to content
This repository has been archived by the owner on Jun 1, 2022. It is now read-only.

Fixes #165, added missing docs #227

Merged
merged 8 commits into from
Aug 4, 2020
Merged

Fixes #165, added missing docs #227

merged 8 commits into from
Aug 4, 2020

Conversation

fernandojsg
Copy link
Member

Addresses some missing documentation as described here: #165

@fernandojsg fernandojsg added this to the v0.4.0 milestone Jul 30, 2020
site/docs/manual/Architecture.md Outdated Show resolved Hide resolved
site/docs/manual/Architecture.md Outdated Show resolved Hide resolved
site/docs/manual/Architecture.md Outdated Show resolved Hide resolved
site/docs/manual/Architecture.md Outdated Show resolved Hide resolved
site/docs/manual/Architecture.md Outdated Show resolved Hide resolved

// The correct way to do it
let results = this.queries.queryA.results;
for (var i = 0; i < results.length; i++) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't we be decrementing here?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually yes ;D that's the main point actualy of this hehe changing it

site/docs/manual/Architecture.md Outdated Show resolved Hide resolved
@fernandojsg fernandojsg merged commit 5ff1086 into dev Aug 4, 2020
@fernandojsg fernandojsg deleted the docs branch August 4, 2020 21:22
@@ -530,7 +530,7 @@ for (var i = 0; i < results.length; i++) {

// The correct way to do it
let results = this.queries.queryA.results;
for (var i = 0; i < results.length; i++) {
for (var i = results.length - 1; i >= 0; i++) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i++ should be i-- for this to decrement.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants