diff --git a/filters/divided_by.md b/filters/divided_by.md index 7cedea3b..fc6abc3c 100644 --- a/filters/divided_by.md +++ b/filters/divided_by.md @@ -4,7 +4,7 @@ title: divided_by Divides a number by the specified number. -The result is rounded down to the nearest integer (that is, the [floor]({{ "/filters/floor" | prepend: site.baseurl }})) if the divisor is an integer. +The result is rounded down to the nearest integer (that is, the [floor]({{ site.baseurl }}/filters/floor)) if the divisor is an integer.
Input
{% raw %} @@ -76,7 +76,6 @@ In this example, we're dividing by a variable that contains an integer, so we ge ``` {% endraw %} -Output
``` text {% assign my_integer = 7 %} @@ -94,7 +93,6 @@ Here, we [multiply]({{ site.baseurl}}/filters/times) the variable by `1.0` to ge ``` {% endraw %} -Output
``` text {% assign my_integer = 7 %}