diff --git a/docs/en/reference/types.rst b/docs/en/reference/types.rst index 9f75cd58f03..62fb2b44159 100644 --- a/docs/en/reference/types.rst +++ b/docs/en/reference/types.rst @@ -929,8 +929,8 @@ Now we implement our ``Doctrine\DBAL\Types\Type`` instance: The job of Doctrine-DBAL is to transform your type into SQL declaration. You can modify the SQL declaration Doctrine will produce. At first, you -must to enable this feature by overriding the canRequireSQLConversion -method: +must to enable this feature by overriding the +``canRequireSQLConversion`` method: :: @@ -940,8 +940,8 @@ method: return true; } -Then you override the methods convertToPhpValueSQL and -convertToDatabaseValueSQL : +Then you override the methods ``convertToPhpValueSQL`` and +``convertToDatabaseValueSQL`` : ::