summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/compare/Ge.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/functions/compare/Ge.md')
-rw-r--r--docs/content/en/functions/compare/Ge.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/content/en/functions/compare/Ge.md b/docs/content/en/functions/compare/Ge.md
index 479ecf990..ce1fd2302 100644
--- a/docs/content/en/functions/compare/Ge.md
+++ b/docs/content/en/functions/compare/Ge.md
@@ -30,3 +30,11 @@ aliases: [/functions/ge]
{{ ge 2 1 2 }} → true
{{ ge 2 2 1 }} → true
```
+
+Use the `compare.Ge` function to compare other data types as well:
+
+```go-html-template
+{{ ge "ab" "a" }} → true
+{{ ge time.Now (time.AsTime "1964-12-30") }} → true
+{{ ge true false }} → true
+```