Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Open sidebar
Project-FiFo
DalmatinerDB
dqe
Commits
877decba
Commit
877decba
authored
Jun 06, 2018
by
bryanhuntesl
Browse files
fix a couple of help typos
parent
6d8f70fa
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
12 additions
and
12 deletions
+12
-12
src/dqe_count_above_aggr.erl
src/dqe_count_above_aggr.erl
+1
-1
src/dqe_count_above_conf_aggr.erl
src/dqe_count_above_conf_aggr.erl
+1
-1
src/dqe_count_below_aggr.erl
src/dqe_count_below_aggr.erl
+1
-1
src/dqe_count_below_conf_aggr.erl
src/dqe_count_below_conf_aggr.erl
+1
-1
src/dqe_first_above_aggr.erl
src/dqe_first_above_aggr.erl
+1
-1
src/dqe_first_above_conf_aggr.erl
src/dqe_first_above_conf_aggr.erl
+1
-1
src/dqe_first_below_aggr.erl
src/dqe_first_below_aggr.erl
+1
-1
src/dqe_first_below_conf_aggr.erl
src/dqe_first_below_conf_aggr.erl
+1
-1
src/dqe_last_above_aggr.erl
src/dqe_last_above_aggr.erl
+1
-1
src/dqe_last_above_conf_aggr.erl
src/dqe_last_above_conf_aggr.erl
+1
-1
src/dqe_last_below_aggr.erl
src/dqe_last_below_aggr.erl
+1
-1
src/dqe_last_below_conf_aggr.erl
src/dqe_last_below_conf_aggr.erl
+1
-1
No files found.
src/dqe_count_above_aggr.erl
View file @
877decba
...
...
@@ -36,4 +36,4 @@ run([Data], S = #state{const = Const, count = Count}) ->
{
mmath_aggr
:
count_above
(
Data
,
Const
,
Count
),
S
}.
help
()
->
<<
"Returns the count of value above a given thre
a
shold."
>>
.
<<
"Returns the count of value above a given threshold."
>>
.
src/dqe_count_above_conf_aggr.erl
View file @
877decba
...
...
@@ -37,4 +37,4 @@ run([Data], S = #state{const = Const, count = Count}) ->
{
mmath_aggr
:
count_above_conf
(
Data
,
Const
,
Count
),
S
}.
help
()
->
<<
"Returns the count of value above a given confidence thre
a
shold."
>>
.
<<
"Returns the count of value above a given confidence threshold."
>>
.
src/dqe_count_below_aggr.erl
View file @
877decba
...
...
@@ -36,4 +36,4 @@ run([Data], S = #state{const = Const, count = Count}) ->
{
mmath_aggr
:
count_below
(
Data
,
Const
,
Count
),
S
}.
help
()
->
<<
"Returns the count of value below a given thre
a
shold."
>>
.
<<
"Returns the count of value below a given threshold."
>>
.
src/dqe_count_below_conf_aggr.erl
View file @
877decba
...
...
@@ -37,4 +37,4 @@ run([Data], S = #state{const = Const, count = Count}) ->
{
mmath_aggr
:
count_below_conf
(
Data
,
Const
,
Count
),
S
}.
help
()
->
<<
"Returns the count of value below a given confidence thre
a
shold."
>>
.
<<
"Returns the count of value below a given confidence threshold."
>>
.
src/dqe_first_above_aggr.erl
View file @
877decba
...
...
@@ -36,4 +36,4 @@ run([Data], S = #state{const = Const, count = Count}) ->
{
mmath_aggr
:
first_above
(
Data
,
Const
,
Count
),
S
}.
help
()
->
<<
"Returns the fist value above a given thre
a
shold."
>>
.
<<
"Returns the fi
r
st value above a given threshold."
>>
.
src/dqe_first_above_conf_aggr.erl
View file @
877decba
...
...
@@ -37,4 +37,4 @@ run([Data], S = #state{const = Const, first = First}) ->
{
mmath_aggr
:
first_above_conf
(
Data
,
Const
,
First
),
S
}.
help
()
->
<<
"Returns the first value above a given confidence thre
a
shold."
>>
.
<<
"Returns the first value above a given confidence threshold."
>>
.
src/dqe_first_below_aggr.erl
View file @
877decba
...
...
@@ -36,4 +36,4 @@ run([Data], S = #state{const = Const, count = Count}) ->
{
mmath_aggr
:
first_below
(
Data
,
Const
,
Count
),
S
}.
help
()
->
<<
"Returns the fist value below a given thre
a
shold."
>>
.
<<
"Returns the fi
r
st value below a given threshold."
>>
.
src/dqe_first_below_conf_aggr.erl
View file @
877decba
...
...
@@ -37,4 +37,4 @@ run([Data], S = #state{const = Const, first = First}) ->
{
mmath_aggr
:
first_below_conf
(
Data
,
Const
,
First
),
S
}.
help
()
->
<<
"Returns the first value below a given confidence thre
a
shold."
>>
.
<<
"Returns the first value below a given confidence threshold."
>>
.
src/dqe_last_above_aggr.erl
View file @
877decba
...
...
@@ -36,4 +36,4 @@ run([Data], S = #state{const = Const, count = Count}) ->
{
mmath_aggr
:
last_above
(
Data
,
Const
,
Count
),
S
}.
help
()
->
<<
"Returns the last value above a given thre
a
shold."
>>
.
<<
"Returns the last value above a given threshold."
>>
.
src/dqe_last_above_conf_aggr.erl
View file @
877decba
...
...
@@ -37,4 +37,4 @@ run([Data], S = #state{const = Const, last = Last}) ->
{
mmath_aggr
:
last_above_conf
(
Data
,
Const
,
Last
),
S
}.
help
()
->
<<
"Returns the last value above a given confidence thre
a
shold."
>>
.
<<
"Returns the last value above a given confidence threshold."
>>
.
src/dqe_last_below_aggr.erl
View file @
877decba
...
...
@@ -36,4 +36,4 @@ run([Data], S = #state{const = Const, count = Count}) ->
{
mmath_aggr
:
last_below
(
Data
,
Const
,
Count
),
S
}.
help
()
->
<<
"Returns the last value below a given thre
a
shold."
>>
.
<<
"Returns the last value below a given threshold."
>>
.
src/dqe_last_below_conf_aggr.erl
View file @
877decba
...
...
@@ -37,4 +37,4 @@ run([Data], S = #state{const = Const, last = Last}) ->
{
mmath_aggr
:
last_below_conf
(
Data
,
Const
,
Last
),
S
}.
help
()
->
<<
"Returns the last value below a given confidence thre
a
shold."
>>
.
<<
"Returns the last value below a given confidence threshold."
>>
.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment