From 8368d1bafbe8ff8deaa57e709ef6e521a846fd4b Mon Sep 17 00:00:00 2001 From: vxern Date: Mon, 9 Jan 2023 17:30:28 +0000 Subject: [PATCH] misc: Improve phrasing. --- CHANGELOG.md | 4 ++++ README.md | 5 ++--- pubspec.yaml | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d32275e..9d769f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.2.0+2 + +- Small phrasing change in README.md. + ## 2.2.0+1 - Compiled the example files into a single file `example.dart`. diff --git a/README.md b/README.md index 84056b4..1827189 100644 --- a/README.md +++ b/README.md @@ -20,9 +20,8 @@ print(robots.verifyCanAccess('/gist/', userAgent: userAgent)); // False print(robots.verifyCanAccess('/wordcollector/robots_txt/', userAgent: userAgent)); // True ``` -If you are not concerned about rules pertaining to any other user-agents, and we -only care about our own, you may instruct the parser to ignore them by -specifying only those that matter to us: +If you are only concerned about directives pertaining to your own user-agent, +you may instruct the parser to ignore other user-agents as follows: ```dart // Parse the contents, disregarding user-agents other than 'WordCollector'. diff --git a/pubspec.yaml b/pubspec.yaml index dc191b4..3658b64 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: robots_txt -version: 2.2.0+1 +version: 2.2.0+2 description: A complete, dependency-less and fully documented `robots.txt` ruleset parser.