Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/3.0' into 3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jjaderberg committed Oct 14, 2016
2 parents 5d2d4cd + 81967aa commit cd70ceb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class MathFunctionsTest extends DocumentingTest {
graphViz()
section("Number functions", "query-functions-numeric") {
section("abs()", "functions-abs") {
p("`abs()` returns the absolute value for a number.")
p("`abs()` returns the absolute value of a number.")
function("`abs( expression )`", ("expression", "A numeric expression."))
query("MATCH (a), (e) WHERE a.name = 'Alice' AND e.name = 'Eskil' RETURN a.age, e.age, abs(a.age - e.age)",
ResultAssertions((r) => {
Expand Down Expand Up @@ -267,7 +267,7 @@ class MathFunctionsTest extends DocumentingTest {
}
}
section("radians()", "functions-radians") {
p("`radians()` returns the common logarithm (base 10) of the expression.")
p("`radians()` converts degrees to radians.")
function("`radians( expression )`",
("expression", "A numeric expression that represents the angle in degrees."))
query("RETURN radians(180)", ResultAssertions((r) => {
Expand Down

0 comments on commit cd70ceb

Please sign in to comment.