From fc4506c4c159977d758521a8facc5144bbc499c8 Mon Sep 17 00:00:00 2001 From: ongchi Date: Sat, 4 Nov 2023 22:12:50 +0800 Subject: [PATCH] Minor: Remove the irrelevant note from the Expression API doc --- docs/source/user-guide/expressions.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/docs/source/user-guide/expressions.md b/docs/source/user-guide/expressions.md index 28104dbfd445..dbe12df33564 100644 --- a/docs/source/user-guide/expressions.md +++ b/docs/source/user-guide/expressions.md @@ -107,11 +107,6 @@ but these operators always return a `bool` which makes them not work with the ex | x % y, x.rem(y) | Remainder | | -x, x.neg() | Negation | -:::{note} -In Rust, the keyword `mod` is reserved and cannot be used as an identifier. -To avoid any conflicts and ensure code completion works smoothly, we use `mod_` instead. -::: - ## Math Functions | Syntax | Description |