From d336f57357393632da208136b8558feb812cee6f Mon Sep 17 00:00:00 2001 From: bramtayl Date: Sun, 30 Jun 2019 18:48:34 -0400 Subject: [PATCH] docs --- src/LightQuery.jl | 12 ++++++------ src/rows.jl | 2 +- src/utilities.jl | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/LightQuery.jl b/src/LightQuery.jl index 6213692..dae923a 100644 --- a/src/LightQuery.jl +++ b/src/LightQuery.jl @@ -2,15 +2,15 @@ module LightQuery import Base: ==, !=, !, &, |, axes, coalesce, collect_similar, collect_to!, copyto!, eltype, empty, first, get, getindex, getproperty, grow_to!, haskey, - isequal, ifelse, in, IndexStyle, IteratorEltype, IteratorSize, isless, - ismissing, length, iterate, merge, NamedTuple, occursin, push!, setindex!, - size, show, similar, startswith, view, zip + isequal, in, IndexStyle, IteratorEltype, IteratorSize, isless, ismissing, + length, iterate, merge, NamedTuple, occursin, push!, setindex!, size, show, + similar, startswith, view, zip @static if VERSION >= v"1.1" import Base: push_widen, setindex_widen_up_to end -using Base: argument_datatype, _collect, @default_eltype, diff_names, - EltypeUnknown, Generator, HasEltype, HasLength, HasShape, isvatuple, @pure, - promote_typejoin, @propagate_inbounds, SizeUnknown, tail +using Base: _collect, @default_eltype, diff_names, EltypeUnknown, Generator, + HasEltype, HasLength, HasShape, isvatuple, @pure, promote_typejoin, + @propagate_inbounds, SizeUnknown, tail import Base.Iterators: drop, flatten, take using Base.Iterators: Filter, Zip @static if VERSION < v"1.1" diff --git a/src/rows.jl b/src/rows.jl index 5ff2ca4..d40d8bd 100644 --- a/src/rows.jl +++ b/src/rows.jl @@ -74,7 +74,7 @@ struct Backwards{Increasing} end """ - struct Backwards{Increasing} + backwards(something) Reverse sorting order. diff --git a/src/utilities.jl b/src/utilities.jl index 65358fe..e831576 100644 --- a/src/utilities.jl +++ b/src/utilities.jl @@ -136,7 +136,7 @@ value(pair::Pair) = pair.second export value """ - if_known(something) + @if_known(something) If `something` is `missing`, return `missing`, otherwise, `something`.