Skip to content

Commit 5b98784

Browse files
author
Jill Grant
authored
Update how-to-call.md
Acrolinx fixes
1 parent de78cd4 commit 5b98784

File tree

1 file changed

+7
-7
lines changed
  • articles/ai-services/language-service/personally-identifiable-information

1 file changed

+7
-7
lines changed

articles/ai-services/language-service/personally-identifiable-information/how-to-call.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.custom: language-service-pii, ignite-2024
1515

1616
# How to detect and redact Personally Identifying Information (PII)
1717

18-
The PII feature can evaluate unstructured text, extract and redact sensitive information (PII) and health information (PHI) in text across several [pre-defined categories](concepts/entity-categories.md).
18+
The PII feature can evaluate unstructured text, extract, and redact sensitive information (PII) and health information (PHI) in text across several [predefined categories](concepts/entity-categories.md).
1919

2020

2121
## Development options
@@ -30,22 +30,22 @@ By default, this feature uses the latest available AI model on your text. You ca
3030

3131
### Input languages
3232

33-
When you submit documents to be processed, you can specify which of [the supported languages](language-support.md) they're written in. if you don't specify a language, extraction defaults to English. The API may return offsets in the response to support different [multilingual and emoji encodings](../concepts/multilingual-emoji-support.md).
33+
When you submit documents to be processed, you can specify which of [the supported languages](language-support.md) they're written in. If you don't specify a language, extraction defaults to English. The API may return offsets in the response to support different [multilingual and emoji encodings](../concepts/multilingual-emoji-support.md).
3434

3535
### Redaction Policy (version 2024-11-5-preview only)
36-
In version 2024-11-5-preview, you're able to define the `redactionPolicy` parameter to reflect the redaction policy to be used when redacting text. The policy field supports 3 policy types:
36+
In version 2024-11-5-preview, you're able to define the `redactionPolicy` parameter to reflect the redaction policy to be used when redacting text. The policy field supports three policy types:
3737

3838
- `DoNotRedact`
3939
- `MaskWithCharacter` (default)
4040
- `MaskWithEntityType`
4141

42-
The `DoNotRedact` policy allows the user to return the response without the `redactedText` field, i.e. “John Doe received a call from 424-878-9192”,.
42+
The `DoNotRedact` policy allows the user to return the response without the `redactedText` field, that is, “John Doe received a call from 424-878-9192”.
4343

44-
The `MaskWithRedactionCharacter` policy allows the `redactedText` to be masked with a character (such as "*"), preserving the length and offset of the original text, i.e.******** received a call from ************”. This is the existing behavior.
44+
The `MaskWithRedactionCharacter` policy allows the `redactedText` to be masked with a character (such as "*"), preserving the length and offset of the original text, that is,******** received a call from ************”. This is the existing behavior.
4545

46-
There is also an optional field called `redactionCharacter` where you can input the character to be used in redaction if you're using the `MaskWithCharacter` policy
46+
There's also an optional field called `redactionCharacter` where you can input the character to be used in redaction if you're using the `MaskWithCharacter` policy
4747

48-
The `MaskWithEntityType` policy allows you to mask the detected PII entity text with the detected entity type, i.e.[PERSON_1] received a call from [PHONENUMBER_1]”.
48+
The `MaskWithEntityType` policy allows you to mask the detected PII entity text with the detected entity type, that is,[PERSON_1] received a call from [PHONENUMBER_1]”.
4949

5050
## Submitting data
5151

0 commit comments

Comments
 (0)