diff --git a/versions/2.0.md b/versions/2.0.md
index a3005b1e7d..29e5aafa82 100755
--- a/versions/2.0.md
+++ b/versions/2.0.md
@@ -401,7 +401,7 @@ Field Name | Type | Description
parameters | [[Parameter Object](#parameterObject) | [Reference Object](#referenceObject)] | A list of parameters that are applicable for this operation. If a parameter is already defined at the [Path Item](#pathItemParameters), the new definition will override it, but can never remove it. The list MUST NOT include duplicated parameters. A unique parameter is defined by a combination of a [name](#parameterName) and [location](#parameterIn). The list can use the [Reference Object](#referenceObject) to link to parameters that are defined at the [Swagger Object's parameters](#swaggerParameters). There can be one "body" parameter at most.
responses | [Responses Object](#responsesObject) | **Required.** The list of possible responses as they are returned from executing this operation.
schemes | [`string`] | The transfer protocol for the operation. Values MUST be from the list: `"http"`, `"https"`, `"ws"`, `"wss"`. The value overrides the Swagger Object [`schemes`](#swaggerSchemes) definition.
-deprecated | `boolean` | Declares this operation to be deprecated. Usage of the declared operation should be refrained. Default value is `false`.
+deprecated | `boolean` | Declares this operation to be deprecated. Usage of the deprecated operation should be refrained. Default value is `false`.
security | [[Security Requirement Object](#securityRequirementObject)] | A declaration of which security schemes are applied for this operation. The list of values describes alternative security schemes that can be used (that is, there is a logical OR between the security requirements). This definition overrides any declared top-level [`security`](#swaggerSecurity). To remove a top-level security declaration, an empty array can be used.
##### Patterned Objects