Skip to content
Snippets Groups Projects
Commit 090f168a authored by Dhruva Gowda Storz's avatar Dhruva Gowda Storz
Browse files

fixed minor typo in wildcard.py

parent 533610f1
No related branches found
No related tags found
2 merge requests!233Documentation update 2,!225Documentation update #1
......@@ -91,13 +91,15 @@ def wildcard_test():
for element in moose.wildcardFind(wildcard):
print(('\t', element.path))
# `#` can be used only once and matches all subsequent characters in name
# `?` can be used any number of times but substitutes a single character
wildcard = '/alfa/bravo/charl?e'
print(('\nElements Matching:', wildcard))
for element in moose.wildcardFind(wildcard):
print(('\t', element.path))
# `?` can be used any number of times but substitutes a single character
# `#` can be used only once and matches all subsequent characters in name
wildcard = '/alfa/bravo/fox#'
print(('\nElements Matching:', wildcard))
for element in moose.wildcardFind(wildcard):
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment