module RuboCop::Cop::Style::AnnotationComment

def annotation?(comment)

def annotation?(comment)
  _margin, first_word, colon, space, note = split_comment(comment)
  keyword_appearance?(first_word, colon, space) &&
    !just_first_word_of_sentence?(first_word, colon, space, note)
end