From 195eb0b39be9bc3ed349311950810f34f95a0a2d Mon Sep 17 00:00:00 2001 From: Simon Binder Date: Thu, 30 Apr 2020 21:28:42 +0200 Subject: [PATCH] Small docs improvements --- docs/content/en/_index.html | 2 +- moor/lib/src/runtime/query_builder/expressions/text.dart | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/content/en/_index.html b/docs/content/en/_index.html index 5c64fc9f..b449313f 100644 --- a/docs/content/en/_index.html +++ b/docs/content/en/_index.html @@ -8,7 +8,7 @@ linkTitle: "Moor" {{< blocks/cover title="Moor: Persistence library for Dart" image_anchor="top" height="med" color="indigo" >}}
}}"> - Learn More + Learn moor Get fom pub diff --git a/moor/lib/src/runtime/query_builder/expressions/text.dart b/moor/lib/src/runtime/query_builder/expressions/text.dart index b5266730..cdb8b2f2 100644 --- a/moor/lib/src/runtime/query_builder/expressions/text.dart +++ b/moor/lib/src/runtime/query_builder/expressions/text.dart @@ -19,6 +19,8 @@ extension StringExpressionOperators on Expression { /// Whether this expression contains [substring]. /// + /// Note that this is case-insensitive for the English alphabet only. + /// /// This is equivalent to calling [like] with `%%`. Expression contains(String substring) { return like('%$substring%');