Skip to content

Commit

Permalink
Hide docs that can’t show up in the navigation (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
chasenlehara authored Oct 31, 2017
1 parent 70fedd3 commit e148e93
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/clause.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ var clause = {};
* new clause.Where()
*
* This is so we can tell what type of clause some properties are for.
* @hide
*/
module.exports = clause;

Expand Down
1 change: 1 addition & 0 deletions src/compare.js
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,7 @@ module.exports = compareHelpers = {
},
/**
* Checks if A is a subset of B. If A is a subset of B, A \ B will be undefined. But B \ A will be defined.
* @hide
*/
properSubsetComparesType: function(a, b, aParent, bParent, prop, compares, options){
if(typeof compares === "function") {
Expand Down
1 change: 1 addition & 0 deletions src/set-core.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ function Translate(clause, options){
*
* new set.Algebra(Where(),Paginate(),Sort())
*
* @hide
*/
var Algebra = function(){
var clauses = this.clauses = {
Expand Down

0 comments on commit e148e93

Please sign in to comment.