From c8353e9df6a64459a39f0eefebb33ca0fcbc4b64 Mon Sep 17 00:00:00 2001 From: BafDyce <bafdyce@tuta.io> Date: Sat, 28 Dec 2019 03:00:12 +0000 Subject: [PATCH] fix: Fix help text of test builtin --- manual/src/builtins.md | 10 +++++----- src/lib/builtins/test.rs | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/manual/src/builtins.md b/manual/src/builtins.md index 47baba0f..a74e3610 100644 --- a/manual/src/builtins.md +++ b/manual/src/builtins.md @@ -499,19 +499,19 @@ OPTIONS the integers are equal INTEGER -ge INTEGER - the first INTEGER is greater than or equal to the first INTEGER + the first INTEGER is greater than or equal to the second INTEGER INTEGER -gt INTEGER - the first INTEGER is greater than the first INTEGER + the first INTEGER is greater than the second INTEGER INTEGER -le INTEGER - the first INTEGER is less than or equal to the first INTEGER + the first INTEGER is less than or equal to the second INTEGER INTEGER -lt INTEGER - the first INTEGER is less than the first INTEGER + the first INTEGER is less than the second INTEGER INTEGER -ne INTEGER - the first INTEGER is not equal to the first INTEGER + the first INTEGER is not equal to the second INTEGER FILE -ef FILE both files have the same device and inode numbers diff --git a/src/lib/builtins/test.rs b/src/lib/builtins/test.rs index 63957868..c87dd934 100644 --- a/src/lib/builtins/test.rs +++ b/src/lib/builtins/test.rs @@ -44,19 +44,19 @@ OPTIONS the integers are equal INTEGER -ge INTEGER - the first INTEGER is greater than or equal to the first INTEGER + the first INTEGER is greater than or equal to the second INTEGER INTEGER -gt INTEGER - the first INTEGER is greater than the first INTEGER + the first INTEGER is greater than the second INTEGER INTEGER -le INTEGER - the first INTEGER is less than or equal to the first INTEGER + the first INTEGER is less than or equal to the second INTEGER INTEGER -lt INTEGER - the first INTEGER is less than the first INTEGER + the first INTEGER is less than the second INTEGER INTEGER -ne INTEGER - the first INTEGER is not equal to the first INTEGER + the first INTEGER is not equal to the second INTEGER FILE -ef FILE both files have the same device and inode numbers -- GitLab