Skip to content

Commit 2ad86d4

Browse files
authored
Merge pull request #278178 from alexbuckgit/alexbuckgit/docutune-autopr-20240613-184702-6941722-ignore-build
[BULK] - DocuTune v1.4.1 - Standardize formatting of abbreviations (part 1)
2 parents 5a1fce4 + b2829a4 commit 2ad86d4

File tree

31 files changed

+40
-43
lines changed

31 files changed

+40
-43
lines changed

articles/ai-services/containers/includes/cognitive-services-container-security.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The host should allowlist **port 443** and the following domains:
3939

4040
#### Disable deep packet inspection
4141

42-
[Deep packet inspection](https://en.wikipedia.org/wiki/Deep_packet_inspection) (DPI) is a type of data processing that inspects in detail the data sent over a computer network, and usually takes action by blocking, rerouting, or logging it accordingly.
42+
[Deep packet inspection (DPI)](https://en.wikipedia.org/wiki/Deep_packet_inspection) is a type of data processing that inspects in detail the data sent over a computer network, and usually takes action by blocking, rerouting, or logging it accordingly.
4343

4444
Disable DPI on the secure channels that the Azure AI containers create to Microsoft servers. Failure to do so will prevent the container from functioning correctly.
4545

articles/ai-services/document-intelligence/create-sas-tokens.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Create shared access signature (SAS) tokens for your storage containers and blobs
3-
description: How to create Shared Access Signature tokens (SAS) for containers and blobs with Microsoft Storage Explorer and the Azure portal.
3+
description: How to create Shared Access Signature (SAS) tokens for containers and blobs with Microsoft Storage Explorer and the Azure portal.
44
ms.topic: how-to
55
author: laujan
66
manager: nitinme

articles/ai-services/document-intelligence/how-to-guides/includes/v3-0/java-sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ monikerRange: 'doc-intel-3.1.0 || doc-intel-3.0.0'
3434

3535
If you aren't using Visual Studio Code, make sure you have the following installed in your development environment:
3636

37-
- A [**Java Development Kit** (JDK)](/java/openjdk/download#openjdk-17) version 8 or later. For more information, see [Microsoft Build of OpenJDK](https://www.microsoft.com/openjdk).
37+
- A [**Java Development Kit (JDK)**](/java/openjdk/download#openjdk-17) version 8 or later. For more information, see [Microsoft Build of OpenJDK](https://www.microsoft.com/openjdk).
3838
- [**Gradle**](https://docs.gradle.org/current/userguide/installation.html), version 6.8 or later.
3939

4040
- An Azure AI services or Document Intelligence resource. Create a <a href="https://portal.azure.com/#create/Microsoft.CognitiveServicesFormRecognizer" title="Create a Document Intelligence resource." target="_blank">single-service</a> or <a href="https://portal.azure.com/#create/Microsoft.CognitiveServicesAllInOne" title="Create a multiple Document Intelligence resource." target="_blank">multi-service</a>. You can use the free pricing tier (`F0`) to try the service, and upgrade later to a paid tier for production.

articles/ai-services/document-intelligence/how-to-guides/includes/v4-0/java-sdk.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ ms.custom: devx-track-csharp, ignite-2023, linux-related-content
2727

2828
If you aren't using Visual Studio Code, make sure you have the following installed in your development environment:
2929

30-
- A [**Java Development Kit** (JDK)](/java/openjdk/download#openjdk-17) version 8 or later. For more information, see [Microsoft Build of OpenJDK](https://www.microsoft.com/openjdk).
30+
- A [**Java Development Kit (JDK)**](/java/openjdk/download#openjdk-17) version 8 or later. For more information, see [Microsoft Build of OpenJDK](https://www.microsoft.com/openjdk).
3131
- [**Gradle**](https://docs.gradle.org/current/userguide/installation.html), version 6.8 or later.
3232

3333
- An Azure AI services or Document Intelligence resource. Create a <a href="https://portal.azure.com/#create/Microsoft.CognitiveServicesFormRecognizer" title="Create a Document Intelligence resource." target="_blank">single-service</a> or <a href="https://portal.azure.com/#create/Microsoft.CognitiveServicesAllInOne" title="Create a multiple Document Intelligence resource." target="_blank">multi-service</a>. You can use the free pricing tier (`F0`) to try the service, and upgrade later to a paid tier for production.
@@ -85,10 +85,10 @@ This article uses the Gradle dependency manager. You can find the client library
8585

8686
1. Open the project's *build.gradle.kts* file in your IDE. Copy and paste the following code to include the client library as an `implementation` statement, along with the required plugins and settings.
8787

88-
```kotlin
89-
plugins {
90-
java
91-
application
88+
```kotlin
89+
plugins {
90+
java
91+
application
9292
}
9393
application {
9494
mainClass.set("DocIntelligence")
@@ -98,9 +98,8 @@ This article uses the Gradle dependency manager. You can find the client library
9898
}
9999
dependencies {
100100
implementation group: 'com.azure', name: 'azure-ai-documentintelligence', version: '1.0.0-beta.2'
101-
102101
}
103-
```
102+
```
104103

105104
## Create a Java application
106105

articles/ai-services/document-intelligence/quickstarts/includes/java-sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ In this quickstart, use the following features to analyze and extract data and v
4343
4444
* If you aren't using Visual Studio Code, make sure you have the following installed in your development environment:
4545

46-
* A [**Java Development Kit** (JDK)](/java/openjdk/download#openjdk-17) version 8 or later. For more information, *see* [Microsoft Build of OpenJDK](https://www.microsoft.com/openjdk).
46+
* A [**Java Development Kit (JDK)**](/java/openjdk/download#openjdk-17) version 8 or later. For more information, *see* [Microsoft Build of OpenJDK](https://www.microsoft.com/openjdk).
4747

4848
* [**Gradle**](https://docs.gradle.org/current/userguide/installation.html), version 6.8 or later.
4949

articles/ai-services/document-intelligence/quickstarts/includes/v2-1/java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ In this quickstart, you use the following APIs to extract structured data from f
2121

2222
* Azure subscription - [Create one for free](https://azure.microsoft.com/free/cognitive-services/).
2323

24-
* A [**Java Development Kit** (JDK)](https://wiki.openjdk.java.net/display/jdk8u) version 8 or later. For more information, *see* [supported Java Versions and update schedule](/azure/developer/java/fundamentals/java-support-on-azure#supported-java-versions-and-update-schedule).
24+
* A [**Java Development Kit (JDK)**](https://wiki.openjdk.java.net/display/jdk8u) version 8 or later. For more information, *see* [supported Java Versions and update schedule](/azure/developer/java/fundamentals/java-support-on-azure#supported-java-versions-and-update-schedule).
2525

2626
* An Azure AI services or Document Intelligence resource. Once you have your Azure subscription, create a [single-service](https://portal.azure.com/#create/Microsoft.CognitiveServicesFormRecognizer) or [multi-service](https://portal.azure.com/#create/Microsoft.CognitiveServicesAllInOne) Document Intelligence resource in the Azure portal to get your key and endpoint. You can use the free pricing tier (`F0`) to try the service, and upgrade later to a paid tier for production.
2727

articles/ai-services/language-service/entity-linking/includes/quickstarts/java-sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Use this quickstart to create an entity linking application with the client libr
1717
## Prerequisites
1818

1919
* Azure subscription - [Create one for free](https://azure.microsoft.com/free/cognitive-services)
20-
* [Java Development Kit](https://www.oracle.com/technetwork/java/javase/downloads/index.html) (JDK) with version 8 or above
20+
* [Java Development Kit (JDK)](https://www.oracle.com/technetwork/java/javase/downloads/index.html) with version 8 or above
2121

2222

2323
## Setting up

articles/ai-services/language-service/key-phrase-extraction/includes/quickstarts/java-sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Use this quickstart to create a key phrase extraction application with the clien
1616
## Prerequisites
1717

1818
* Azure subscription - [Create one for free](https://azure.microsoft.com/free/cognitive-services)
19-
* [Java Development Kit](https://www.oracle.com/technetwork/java/javase/downloads/index.html) (JDK) with version 8 or above
19+
* [Java Development Kit (JDK)](https://www.oracle.com/technetwork/java/javase/downloads/index.html) with version 8 or above
2020

2121

2222
## Setting up

articles/ai-services/language-service/language-detection/includes/quickstarts/java-sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Use this quickstart to create a language detection application with the client l
1616
## Prerequisites
1717

1818
* Azure subscription - [Create one for free](https://azure.microsoft.com/free/cognitive-services)
19-
* [Java Development Kit](https://www.oracle.com/technetwork/java/javase/downloads/index.html) (JDK) with version 8 or above
19+
* [Java Development Kit (JDK)](https://www.oracle.com/technetwork/java/javase/downloads/index.html) with version 8 or above
2020

2121

2222
## Setting up

articles/ai-services/language-service/named-entity-recognition/concepts/named-entity-categories.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.custom: language-service-ner
1414

1515
# Supported Named Entity Recognition (NER) entity categories and entity types
1616

17-
Use this article to find the entity categories that can be returned by [Named Entity Recognition](../how-to-call.md) (NER). NER runs a predictive model to identify and categorize named entities from an input document.
17+
Use this article to find the entity categories that can be returned by [Named Entity Recognition (NER)](../how-to-call.md). NER runs a predictive model to identify and categorize named entities from an input document.
1818

1919
> [!NOTE]
2020
> * Starting from API version 2023-04-15-preview, the category and subcategory fields are replaced with entity types and tags to introduce better flexibility.
@@ -811,7 +811,7 @@ The entity in this category can have the following subcategories.
811811

812812
## Supported Named Entity Recognition (NER) entity categories
813813

814-
Use this article to find the entity types and the additional tags that can be returned by [Named Entity Recognition](../how-to-call.md) (NER). NER runs a predictive model to identify and categorize named entities from an input document.
814+
Use this article to find the entity types and the additional tags that can be returned by [Named Entity Recognition (NER)](../how-to-call.md). NER runs a predictive model to identify and categorize named entities from an input document.
815815

816816
### Type: Address
817817

0 commit comments

Comments
 (0)