From 6e0e9f49462fed80be89db2dfd3d3634ca3dc2ed Mon Sep 17 00:00:00 2001 From: Heiko <61519853+htcfreek@users.noreply.github.com> Date: Wed, 25 Dec 2024 15:12:35 +0100 Subject: [PATCH 1/2] add rand(x) to Calculator docs --- hub/powertoys/run.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/hub/powertoys/run.md b/hub/powertoys/run.md index e544c949df..29db923f20 100644 --- a/hub/powertoys/run.md +++ b/hub/powertoys/run.md @@ -1,7 +1,7 @@ --- title: PowerToys Run utility for Windows description: Run is a quick launcher for power users that contains additional features without sacrificing performance. -ms.date: 11/19/2024 +ms.date: 12/25/2024 ms.topic: concept-article ms.localizationpriority: medium no-loc: [PowerToys, Windows, File Explorer, PowerToys Run, Window Walker] @@ -197,7 +197,8 @@ The Calculator plugin supports the following operations: | Power of x | pow( x, y ) | Calculate a number (x) raised to the power of some other number (y). | | Factorial | x! | | | Sign | sign( -x ) | A number that indicates the sign of value:
• `-1` if number is less than zero.
• `0` if number is zero.
• `1` if number is greater than zero. | -| Random number | rand() | Returns a fractional number between 0 and 1. | +| Random fractional number | rand() | Returns a fractional number between 0 and 1. | +| Random integer number | randi( x ) | Returns a integer number between 0 and `x`. | | Pi | pi | Returns the number pi. | | Sine | sin( x ) | | | Cosine | cos( x ) | | From dbb65252fc34c8b6ab2f37ffcb2be16e03ea4b14 Mon Sep 17 00:00:00 2001 From: Heiko <61519853+htcfreek@users.noreply.github.com> Date: Thu, 26 Dec 2024 11:25:15 +0100 Subject: [PATCH 2/2] fix grammar Co-authored-by: PesBandi <127593627+PesBandi@users.noreply.github.com> --- hub/powertoys/run.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hub/powertoys/run.md b/hub/powertoys/run.md index 29db923f20..07c7af73f4 100644 --- a/hub/powertoys/run.md +++ b/hub/powertoys/run.md @@ -198,7 +198,7 @@ The Calculator plugin supports the following operations: | Factorial | x! | | | Sign | sign( -x ) | A number that indicates the sign of value:
• `-1` if number is less than zero.
• `0` if number is zero.
• `1` if number is greater than zero. | | Random fractional number | rand() | Returns a fractional number between 0 and 1. | -| Random integer number | randi( x ) | Returns a integer number between 0 and `x`. | +| Random integer number | randi( x ) | Returns an integer number between 0 and `x`. | | Pi | pi | Returns the number pi. | | Sine | sin( x ) | | | Cosine | cos( x ) | |