From 82226a45349a9eb462522d737cf21665bea1c558 Mon Sep 17 00:00:00 2001 From: Paul Hammant Date: Thu, 23 Nov 2023 12:59:04 +0000 Subject: [PATCH] sp --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a7443ae3..df14b5aa 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ QDox is a high speed, small footprint parser for fully extracting class/interface/method definitions (including annotations, parameters, param names). It is designed to be used by active code generators or documentation tools. -Not so relevant any more, but it also also processes JavaDoc @tags +Not so relevant anymore, but it also processes JavaDoc @tags # Migration from Codehaus @@ -16,7 +16,7 @@ Maven's central repo [holds versions of QDox](http://search.maven.org/#search%7C # In A Nutshell -A custom built parser has been built using JFlex and BYacc/J. These have been chosen because of their proven performance and they require no external libraries at runtime. +A custom-built parser has been built using JFlex and BYacc/J. These have been chosen because of their proven performance, and they require no external libraries at runtime. The parser skims the source files only looking for things of interest such as class/interface definitions, import statements, JavaDoc and member declarations. The parser ignores things such as actual method implementations to avoid overhead (while in method blocks, curly brace counting suffices).