Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating description for MatchMode in Migration Rules #2390

Merged
merged 2 commits into from
Oct 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/dev_guide/migration/migration-rules.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,10 @@ Migration rules are specified in YAML files. A single rule file may contain mult
- String value
- Required. Specify the CMake syntax name that will be migrated. Use the unique name for the CMake syntax.
* - MatchMode
- ``Partial`` | ``Full``
- Required. Specify the match mode with full word match or partial word match. If not specified, partial match mode will be used.
- ``Partial`` | ``Full`` | ``StrictFull``
- Optional. Specify the match mode with full word match, strict full word match,
or partial word match. If not specified, partial match mode will be used. The
partial matching mode means the matched string can be surrounded by arbitrary characters including whitespace. The full matching mode means the matched string should not be surrounded by identifier characters (letters, numbers, and underscore). The strict matching mode means the matched string should only be surrounded by whitespace characters.
* - In
- String value
- Required. Specifies the target name in the input source code.
Expand Down