aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorIvan Komissarov <abbapoh@gmail.com>2020-03-08 14:16:56 +0100
committerIvan Komissarov <ABBAPOH@gmail.com>2020-03-09 09:12:01 +0000
commit80aa5492ce974d531d7b071f4006ae822a854fb4 (patch)
treeaa26829a92013ff4693b128407f684681d8001fe /doc
parent4e00b0777b0348159fc77fdb2ccb4a3c3e2c9d2a (diff)
doc: fix candidateFilter example
We cannot use wildcards in this context, the example is misleading Change-Id: I125128908652e196c3e33813275fe88597f56481 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'doc')
-rw-r--r--doc/reference/items/probe/path-probe.qdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/reference/items/probe/path-probe.qdoc b/doc/reference/items/probe/path-probe.qdoc
index c1088a9cf..936ce3180 100644
--- a/doc/reference/items/probe/path-probe.qdoc
+++ b/doc/reference/items/probe/path-probe.qdoc
@@ -81,7 +81,7 @@
For example, when searching for a library, it might be necessary to check its architecture:
\code
PathProbe {
- pathSuffixes: ["*.so", *.dll]
+ pathSuffixes: [".so", ".dll", ".dylib"]
candidateFilter: {
function getLibraryArchitecture(file) { ... }
return function(file) {