@@ -105,7 +105,7 @@ extension IntegerPropertyQuery on PropertyQuery<int> {
105105
106106 /// Set to only return distinct values.
107107 ///
108- /// E.g. [1,2,3] instead of [1,1,2,3,3,3] .
108+ /// E.g. ` [1,2,3]` instead of ` [1,1,2,3,3,3]` .
109109 /// Strings default to case-insensitive comparison.
110110 set distinct (bool d) {
111111 _distinct = d;
@@ -201,7 +201,7 @@ extension DoublePropertyQuery on PropertyQuery<double> {
201201
202202 /// Set to only return distinct values.
203203 ///
204- /// E.g. [1,2,3] instead of [1,1,2,3,3,3] .
204+ /// E.g. ` [1,2,3]` instead of ` [1,1,2,3,3,3]` .
205205 /// Strings default to case-insensitive comparison.
206206 set distinct (bool d) {
207207 _distinct = d;
@@ -267,7 +267,7 @@ extension StringPropertyQuery on PropertyQuery<String> {
267267
268268 /// Set to only return distinct values.
269269 ///
270- /// E.g. [foo, bar] instead of [foo, bar, bar, bar, foo] .
270+ /// E.g. ` [foo, bar]` instead of ` [foo, bar, bar, bar, foo]` .
271271 /// Strings default to case-insensitive comparison.
272272 set distinct (bool d) {
273273 _distinct = d;
0 commit comments