Skip to content

Commit 3ee7c37

Browse files
Remove "en-us" from links in digital twins SDK (Azure#24100)
1 parent d39a03b commit 3ee7c37

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

sdk/digitaltwins/azure-digitaltwins-core/src/main/java/com/azure/digitaltwins/core/DigitalTwinsAsyncClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1274,7 +1274,7 @@ Mono<DigitalTwinsResponse<Void>> updateComponentWithResponse(String digitalTwinI
12741274
*
12751275
* Note that there may be a delay between before changes in your instance are reflected in queries.
12761276
* For more details on query limitations, see
1277-
* <a href="https://docs.microsoft.com/en-us/azure/digital-twins/how-to-query-graph#query-limitations">Query limitations</a>
1277+
* <a href="https://docs.microsoft.com/azure/digital-twins/how-to-query-graph#query-limitations">Query limitations</a>
12781278
*
12791279
* @param query The query string, in SQL-like syntax.
12801280
* @param clazz The model class to deserialize each queried digital twin into. Since the queried twins may not all
@@ -1302,7 +1302,7 @@ public <T> PagedFlux<T> query(String query, Class<T> clazz) {
13021302
*
13031303
* Note that there may be a delay between before changes in your instance are reflected in queries.
13041304
* For more details on query limitations, see
1305-
* <a href="https://docs.microsoft.com/en-us/azure/digital-twins/how-to-query-graph#query-limitations">Query limitations</a>
1305+
* <a href="https://docs.microsoft.com/azure/digital-twins/how-to-query-graph#query-limitations">Query limitations</a>
13061306
*
13071307
* @param query The query string, in SQL-like syntax.
13081308
* @param clazz The model class to deserialize each queried digital twin into. Since the queried twins may not all

sdk/digitaltwins/azure-digitaltwins-core/src/main/java/com/azure/digitaltwins/core/DigitalTwinsClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -756,7 +756,7 @@ public DigitalTwinsResponse<Void> updateComponentWithResponse(String digitalTwin
756756
*
757757
* Note that there may be a delay between before changes in your instance are reflected in queries.
758758
* For more details on query limitations, see
759-
* <a href="https://docs.microsoft.com/en-us/azure/digital-twins/how-to-query-graph#query-limitations">Query limitations</a>
759+
* <a href="https://docs.microsoft.com/azure/digital-twins/how-to-query-graph#query-limitations">Query limitations</a>
760760
*
761761
* @param query The query string, in SQL-like syntax.
762762
* @param clazz The model class to deserialize each queried digital twin into. Since the queried twins may not all
@@ -784,7 +784,7 @@ public <T> PagedIterable<T> query(String query, Class<T> clazz) {
784784
*
785785
* Note that there may be a delay between before changes in your instance are reflected in queries.
786786
* For more details on query limitations, see
787-
* <a href="https://docs.microsoft.com/en-us/azure/digital-twins/how-to-query-graph#query-limitations">Query limitations</a>
787+
* <a href="https://docs.microsoft.com/azure/digital-twins/how-to-query-graph#query-limitations">Query limitations</a>
788788
*
789789
* @param query The query string, in SQL-like syntax.
790790
* @param clazz The model class to deserialize each queried digital twin into. Since the queried twins may not all

0 commit comments

Comments
 (0)