Hello
What does skip=“6” do in the following rule please?
Thanks
<rule id="REASON_IS_BECAUSE" name="'the reason... is because'">
<pattern>
<token>the</token>
<token skip="6">reason</token>
<marker>
<token>is</token>
<token>because</token>
</marker>
</pattern>
<!-- or <suggestion>because</suggestion> -->
<message>Probably an incorrect phrase. Use 'the reason <suggestion>is that</suggestion>'.</message>
<short>Grammatical problem</short>
<example correction="is that" type="incorrect">The reason we were late <marker>is because</marker> there was an accident.</example>
<example type="correct">The reason we were late <marker>is that</marker> there was an accident.</example>
</rule>