From 4770a6e0d51e0ec8da20b06d8f8a8ec34557391d Mon Sep 17 00:00:00 2001 From: Sander Spies Date: Mon, 6 Apr 2020 18:09:23 +0200 Subject: [PATCH] -> to => --- gitlab-pages/docs/reference/bitwise.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gitlab-pages/docs/reference/bitwise.md b/gitlab-pages/docs/reference/bitwise.md index 85d6bde86..9d4df471a 100644 --- a/gitlab-pages/docs/reference/bitwise.md +++ b/gitlab-pages/docs/reference/bitwise.md @@ -15,7 +15,7 @@ function and : nat -> nat -> nat val and : nat -> nat -> nat -let and: (nat, nat) -> nat +let and: (nat, nat) => nat A bitwise `and` operation. @@ -27,7 +27,7 @@ function or : nat -> nat -> nat val or : nat -> nat -> nat -let or: (nat, nat) -> nat +let or: (nat, nat) => nat A bitwise `or` operation. @@ -39,7 +39,7 @@ function xor : nat -> nat -> nat val xor : nat -> nat -> nat -let xor: (nat, nat) -> nat +let xor: (nat, nat) => nat A bitwise `xor` operation. @@ -51,7 +51,7 @@ function shift_left : nat -> nat -> nat val shift_left : nat -> nat -> nat -let shift_left: (nat, nat) -> nat +let shift_left: (nat, nat) => nat A bitwise shift left operation. @@ -63,7 +63,7 @@ function shift_right : nat -> nat -> nat val shift_right : nat -> nat -> nat -let shift_right: (nat, nat) -> nat +let shift_right: (nat, nat) => nat A bitwise shift right operation.