Skip to content

Commit 9dea80f

Browse files
authored
Fix developer Math docs (dividedBy -> div) (#35)
1 parent 8bbfc93 commit 9dea80f

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

pages/ar/developer/assemblyscript-api.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ _Math_
104104
- `plus(y: BigDecimal): BigDecimal` – can be written as `x + y`.
105105
- `minus(y: BigDecimal): BigDecimal` – can be written as `x - y`.
106106
- `times(y: BigDecimal): BigDecimal` – can be written as `x * y`.
107-
- `dividedBy(y: BigDecimal): BigDecimal` – can be written as `x / y`.
107+
- `div(y: BigDecimal): BigDecimal` – can be written as `x / y`.
108108
- `equals(y: BigDecimal): bool` – can be written as `x == y`.
109109
- `notEqual(y: BigDecimal): bool` – can be written as `x != y`.
110110
- `lt(y: BigDecimal): bool` – can be written as `x < y`.
@@ -142,7 +142,7 @@ _Math_
142142
- `x.plus(y: BigInt): BigInt` – can be written as `x + y`.
143143
- `x.minus(y: BigInt): BigInt` – can be written as `x - y`.
144144
- `x.times(y: BigInt): BigInt` – can be written as `x * y`.
145-
- `x.dividedBy(y: BigInt): BigInt` – can be written as `x / y`.
145+
- `x.div(y: BigInt): BigInt` – can be written as `x / y`.
146146
- `x.mod(y: BigInt): BigInt` – can be written as `x % y`.
147147
- `x.equals(y: BigInt): bool` – can be written as `x == y`.
148148
- `x.notEqual(y: BigInt): bool` – can be written as `x != y`.

pages/en/developer/assemblyscript-api.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ _Math_
104104
- `plus(y: BigDecimal): BigDecimal` – can be written as `x + y`.
105105
- `minus(y: BigDecimal): BigDecimal` – can be written as `x - y`.
106106
- `times(y: BigDecimal): BigDecimal` – can be written as `x * y`.
107-
- `dividedBy(y: BigDecimal): BigDecimal` – can be written as `x / y`.
107+
- `div(y: BigDecimal): BigDecimal` – can be written as `x / y`.
108108
- `equals(y: BigDecimal): bool` – can be written as `x == y`.
109109
- `notEqual(y: BigDecimal): bool` – can be written as `x != y`.
110110
- `lt(y: BigDecimal): bool` – can be written as `x < y`.
@@ -142,7 +142,7 @@ _Math_
142142
- `x.plus(y: BigInt): BigInt` – can be written as `x + y`.
143143
- `x.minus(y: BigInt): BigInt` – can be written as `x - y`.
144144
- `x.times(y: BigInt): BigInt` – can be written as `x * y`.
145-
- `x.dividedBy(y: BigInt): BigInt` – can be written as `x / y`.
145+
- `x.div(y: BigInt): BigInt` – can be written as `x / y`.
146146
- `x.mod(y: BigInt): BigInt` – can be written as `x % y`.
147147
- `x.equals(y: BigInt): bool` – can be written as `x == y`.
148148
- `x.notEqual(y: BigInt): bool` – can be written as `x != y`.

pages/es/developer/assemblyscript-api.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ _Math_
104104
- `plus(y: BigDecimal): BigDecimal` – can be written as `x + y`.
105105
- `minus(y: BigDecimal): BigDecimal` – can be written as `x - y`.
106106
- `times(y: BigDecimal): BigDecimal` – can be written as `x * y`.
107-
- `dividedBy(y: BigDecimal): BigDecimal` – can be written as `x / y`.
107+
- `div(y: BigDecimal): BigDecimal` – can be written as `x / y`.
108108
- `equals(y: BigDecimal): bool` – can be written as `x == y`.
109109
- `notEqual(y: BigDecimal): bool` – can be written as `x != y`.
110110
- `lt(y: BigDecimal): bool` – can be written as `x < y`.
@@ -142,7 +142,7 @@ _Math_
142142
- `x.plus(y: BigInt): BigInt` – can be written as `x + y`.
143143
- `x.minus(y: BigInt): BigInt` – can be written as `x - y`.
144144
- `x.times(y: BigInt): BigInt` – can be written as `x * y`.
145-
- `x.dividedBy(y: BigInt): BigInt` – can be written as `x / y`.
145+
- `x.div(y: BigInt): BigInt` – can be written as `x / y`.
146146
- `x.mod(y: BigInt): BigInt` – can be written as `x % y`.
147147
- `x.equals(y: BigInt): bool` – can be written as `x == y`.
148148
- `x.notEqual(y: BigInt): bool` – can be written as `x != y`.

pages/ja/developer/assemblyscript-api.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ _Math_
104104
- `plus(y: BigDecimal): BigDecimal` – can be written as `x + y`.
105105
- `minus(y: BigDecimal): BigDecimal` – can be written as `x - y`.
106106
- `times(y: BigDecimal): BigDecimal` – can be written as `x * y`.
107-
- `dividedBy(y: BigDecimal): BigDecimal` – can be written as `x / y`.
107+
- `div(y: BigDecimal): BigDecimal` – can be written as `x / y`.
108108
- `equals(y: BigDecimal): bool` – can be written as `x == y`.
109109
- `notEqual(y: BigDecimal): bool` – can be written as `x != y`.
110110
- `lt(y: BigDecimal): bool` – can be written as `x < y`.
@@ -142,7 +142,7 @@ _Math_
142142
- `x.plus(y: BigInt): BigInt` – can be written as `x + y`.
143143
- `x.minus(y: BigInt): BigInt` – can be written as `x - y`.
144144
- `x.times(y: BigInt): BigInt` – can be written as `x * y`.
145-
- `x.dividedBy(y: BigInt): BigInt` – can be written as `x / y`.
145+
- `x.div(y: BigInt): BigInt` – can be written as `x / y`.
146146
- `x.mod(y: BigInt): BigInt` – can be written as `x % y`.
147147
- `x.equals(y: BigInt): bool` – can be written as `x == y`.
148148
- `x.notEqual(y: BigInt): bool` – can be written as `x != y`.

pages/ko/developer/assemblyscript-api.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ _Math_
104104
- `plus(y: BigDecimal): BigDecimal` – can be written as `x + y`.
105105
- `minus(y: BigDecimal): BigDecimal` – can be written as `x - y`.
106106
- `times(y: BigDecimal): BigDecimal` – can be written as `x * y`.
107-
- `dividedBy(y: BigDecimal): BigDecimal` – can be written as `x / y`.
107+
- `div(y: BigDecimal): BigDecimal` – can be written as `x / y`.
108108
- `equals(y: BigDecimal): bool` – can be written as `x == y`.
109109
- `notEqual(y: BigDecimal): bool` – can be written as `x != y`.
110110
- `lt(y: BigDecimal): bool` – can be written as `x < y`.
@@ -142,7 +142,7 @@ _Math_
142142
- `x.plus(y: BigInt): BigInt` – can be written as `x + y`.
143143
- `x.minus(y: BigInt): BigInt` – can be written as `x - y`.
144144
- `x.times(y: BigInt): BigInt` – can be written as `x * y`.
145-
- `x.dividedBy(y: BigInt): BigInt` – can be written as `x / y`.
145+
- `x.div(y: BigInt): BigInt` – can be written as `x / y`.
146146
- `x.mod(y: BigInt): BigInt` – can be written as `x % y`.
147147
- `x.equals(y: BigInt): bool` – can be written as `x == y`.
148148
- `x.notEqual(y: BigInt): bool` – can be written as `x != y`.

pages/zh/developer/assemblyscript-api.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ _Math_
104104
- `plus(y: BigDecimal): BigDecimal` – can be written as `x + y`.
105105
- `minus(y: BigDecimal): BigDecimal` – can be written as `x - y`.
106106
- `times(y: BigDecimal): BigDecimal` – can be written as `x * y`.
107-
- `dividedBy(y: BigDecimal): BigDecimal` – can be written as `x / y`.
107+
- `div(y: BigDecimal): BigDecimal` – can be written as `x / y`.
108108
- `equals(y: BigDecimal): bool` – can be written as `x == y`.
109109
- `notEqual(y: BigDecimal): bool` – can be written as `x != y`.
110110
- `lt(y: BigDecimal): bool` – can be written as `x < y`.
@@ -142,7 +142,7 @@ _Math_
142142
- `x.plus(y: BigInt): BigInt` – can be written as `x + y`.
143143
- `x.minus(y: BigInt): BigInt` – can be written as `x - y`.
144144
- `x.times(y: BigInt): BigInt` – can be written as `x * y`.
145-
- `x.dividedBy(y: BigInt): BigInt` – can be written as `x / y`.
145+
- `x.div(y: BigInt): BigInt` – can be written as `x / y`.
146146
- `x.mod(y: BigInt): BigInt` – can be written as `x % y`.
147147
- `x.equals(y: BigInt): bool` – can be written as `x == y`.
148148
- `x.notEqual(y: BigInt): bool` – can be written as `x != y`.

0 commit comments

Comments
 (0)