From ed4bae6a1a5ab2e3f9a68b37260cba71726916cb Mon Sep 17 00:00:00 2001 From: Andrew Dunbar Date: Wed, 22 Jan 2025 14:10:19 +0700 Subject: [PATCH] typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit as many a possible→as many as possible --- harper-core/src/parsers/plain_english.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/harper-core/src/parsers/plain_english.rs b/harper-core/src/parsers/plain_english.rs index 13d8df8d..9111cb77 100644 --- a/harper-core/src/parsers/plain_english.rs +++ b/harper-core/src/parsers/plain_english.rs @@ -2,7 +2,7 @@ use super::Parser; use crate::lexing::{lex_token, FoundToken}; use crate::{Span, Token}; -/// A parser that will attempt to lex as many tokens a possible, +/// A parser that will attempt to lex as many tokens as possible, /// without discrimination and until the end of input. #[derive(Clone, Copy)] pub struct PlainEnglish;