Skip to content

Small wording corrections #613

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

Merged
merged 2 commits into from
Jun 7, 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
4 changes: 2 additions & 2 deletions docs/checks/deprecated-key-word.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ This check searches for the statements starting with the following keywords:

### How to solve the issue?

Please `MOVE` by a normal assignment statement using `=` and `TRANSLATE` by an equivalent functional expression using [string functions}(https://help.sap.com/doc/abapdocu_755_index_htm/7.55/en-US/abenprocess_functions.htm).
Replace `MOVE` by a normal assignment statement using `=` and `TRANSLATE` by an equivalent functional expression using [string functions}(https://help.sap.com/doc/abapdocu_755_index_htm/7.55/en-US/abenprocess_functions.htm).

### What to do in case of exception?

In exceptional cases, you can suppress this finding by using the pseudo comment `"#EC DEPRECATED_KEY` which should placed right after the statement:
In exceptional cases, you can suppress this finding by using the pseudo comment `"#EC DEPRECATED_KEY` which should be placed right after the statement:

```abap
MOVE …. "#EC DEPRECATED_KEY
Expand Down
Loading