Skip to content

Commit 558b996

Browse files
committed
Fixing a few image alt descriptions
1 parent 76431b8 commit 558b996

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

articles/storage-actions/storage-tasks/storage-task-conditions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ This article focuses on **conditions**. To learn more about **operations**, see
2727
A condition a collection of one or more _clauses_. Each clause contains a _property_, a _value_, and an _operator_. When the storage task runs, it uses the operator to compare a property with a value to determine whether a clause is met by the target object. In a clause, the **operator** always appears first followed by the **property**, and then the **value**. The following image shows how each element is positioned in the expression.
2828

2929
> [!div class="mx-imgBorder"]
30-
> ![Format of a simple condition with an operator, property, and value.](../media/storage-tasks/storage-task-conditions/storage-task-conditions-condition-format-basic.png)
30+
> ![Diagram that shows the format of a simple condition with an operator, property, and value.](../media/storage-tasks/storage-task-conditions/storage-task-conditions-condition-format-basic.png)
3131
3232
The following clause allows operations only on Microsoft Word documents. This clause targets all documents that end with the file extension `.docx`. Therefore, the operator is `endsWith`, the property is `Name`, and the value is `.docx`.
3333

@@ -44,7 +44,7 @@ For a complete list of operator and property names, see the [Supported operators
4444
A condition can contain multiple clauses separated by a comma along with either the string `and` or `or`. The string `and` targets objects that meet the criteria in all clauses in the condition while `or` targets objects that meet the criterion in any of the clauses in the condition. The following image shows the position of the `and` and `or` string along with two clauses.
4545

4646
> [!div class="mx-imgBorder"]
47-
> ![Format of a condition that contains two clauses.](../media/storage-tasks/storage-task-conditions/storage-task-conditions-condition-format-multiple.png)
47+
> ![Diagram that shows the format of a condition that contains two clauses.](../media/storage-tasks/storage-task-conditions/storage-task-conditions-condition-format-multiple.png)
4848
4949
The following JSON shows a condition that contains two clauses. Because the `and` string is used in this expression, both clauses must evaluate to `true` before an operation is performed on the object.
5050

@@ -61,7 +61,7 @@ Grouped clauses operate as a single unit separate from the rest of the clauses.
6161
The following image shows two clauses grouped together.
6262

6363
> [!div class="mx-imgBorder"]
64-
> ![Format of a condition that contains two clauses grouped together.](../media/storage-tasks/storage-task-conditions/storage-task-conditions-condition-format-groups.png)
64+
> ![Diagram that shows the format of a condition that contains two clauses grouped together.](../media/storage-tasks/storage-task-conditions/storage-task-conditions-condition-format-groups.png)
6565
6666
The following condition allows operations only on Microsoft Word documents where the `readyForLegalHold` tag of the document is set to a value of `Yes`. Operations are also performed on objects that are greater than 100 bytes even if the other two conditions aren't true.
6767

articles/storage-actions/storage-tasks/storage-task-operations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This article focuses on **operations**. To learn more about **conditions**, see
2626
An operation has a name along with zero, one, or multiple parameters. The following image shows how these elements appear for an operation in the JSON template of a storage task.
2727

2828
> [!div class="mx-imgBorder"]
29-
> ![Format of an operation.](../media/storage-tasks/storage-task-operations/storage-task-operations-basic-structure.png)
29+
> ![Diagram that show the format of an operation.](../media/storage-tasks/storage-task-operations/storage-task-operations-basic-structure.png)
3030
3131
The following table describes each element.
3232

@@ -62,7 +62,7 @@ The following operation applies a time-based immutability policy to the object.
6262
Separate multiple operations by using a comma. The following image shows the position of two operations in list of operations.
6363

6464
> [!div class="mx-imgBorder"]
65-
> ![Format of two operations.](../media/storage-tasks/storage-task-operations/storage-task-operations-mulitple-operations.png)
65+
> ![Diagram that shows the format of two operations.](../media/storage-tasks/storage-task-operations/storage-task-operations-mulitple-operations.png)
6666
6767
The following JSON shows two operations separate by a comma.
6868

0 commit comments

Comments
 (0)