From c463121da8ba6dcc74c5f304e53ad9b39fb50f6e Mon Sep 17 00:00:00 2001 From: barelon Date: Tue, 18 Sep 2012 11:28:24 +0300 Subject: [PATCH] Fix some typos in annotations reference MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Changed capitalization of the `@GeneratedValue` and `@Version` examples which incorrectly used lower case - Fixed parameter names in `@NamedNativeQuery` and `@SqlResultSetMapping` - Changed the Docblock style for theĀ @MappedSuperclass example to the style used by all examples --- en/reference/annotations-reference.rst | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/en/reference/annotations-reference.rst b/en/reference/annotations-reference.rst index da79f41e5..1510d8c97 100644 --- a/en/reference/annotations-reference.rst +++ b/en/reference/annotations-reference.rst @@ -295,7 +295,7 @@ Example: /** * @Id * @Column(type="integer") - * @generatedValue(strategy="IDENTITY") + * @GeneratedValue(strategy="IDENTITY") */ protected $id = null; @@ -634,13 +634,17 @@ Example: .. code-block:: php