From e821c335ef30c372a0f6dc0a7c8d15ca03f69151 Mon Sep 17 00:00:00 2001 From: Spotandjake <40705786+spotandjake@users.noreply.github.com> Date: Wed, 26 Jun 2024 20:57:48 -0400 Subject: [PATCH] chore(stdlib): Correct typo in `Int8` doc example (#2119) --- stdlib/int8.gr | 2 +- stdlib/int8.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stdlib/int8.gr b/stdlib/int8.gr index b702edbd0..174660556 100644 --- a/stdlib/int8.gr +++ b/stdlib/int8.gr @@ -433,7 +433,7 @@ provide let (>=) = (x: Int8, y: Int8) => { * @param value: The given value * @returns Containing the inverted bits of the given value * - * @example Int.lnot(-5s) == 4s + * @example Int8.lnot(-5s) == 4s * * @since v0.6.0 */ diff --git a/stdlib/int8.md b/stdlib/int8.md index 5b0040602..6f28853a0 100644 --- a/stdlib/int8.md +++ b/stdlib/int8.md @@ -682,7 +682,7 @@ Returns: Examples: ```grain -Int.lnot(-5s) == 4s +Int8.lnot(-5s) == 4s ``` ### Int8.**(&)**