Skip to content

Commit 6d7734b

Browse files
tchaikovBouncheck
authored andcommitted
manual: correct the codeblock directive
it should start with three backticks not four of them. otherwise sphinx warns like: ``` /home/kefu/dev/scylla-java-driver/docs/_source/manual/mapper/daos/getentity/index.md:111: WARNING: Lexing literal_block '@GetEntity\nProduct asProduct(Row row);\n\n@GetEntity\nProduct firstR owAsProduct(ResultSet resultSet);\n```\n\n' as "java" resulted in an error at token: '`'. Retrying in relaxed mode. ``` in this change, let's use three backticks. and the warning disappears. Signed-off-by: Kefu Chai <[email protected]>
1 parent bc7ed24 commit 6d7734b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manual/mapper/daos/getentity/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ The method can return:
108108
* a single entity instance. If the argument is a result set type, the generated code will extract
109109
the first row and convert it, or return `null` if the result set is empty.
110110

111-
````java
111+
```java
112112
@GetEntity
113113
Product asProduct(Row row);
114114

0 commit comments

Comments
 (0)