Granted this one is due to the intellisense being a bit overactive, but can you spot the mistake?

''' <summary>
''' Select this record for printing
''' </summary>
''' <value></value>
''' <returns></returns>
''' <remarks></remarks>
<NHibernate.Mapping.Attributes.Property()> _
Public Property Printed() As Boolean Implements Interfaces.ICDCover.Printed
  Get
    Return _printed
  End Get
  Set(ByVal value As Boolean)
    _printed = False
  End Set
End Property```
I can :oops:.