Skip to content

Commit 6739930

Browse files
authored
Field names are no longer character restricted
Relates to #35
1 parent c559888 commit 6739930

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ A "robots.txt" parsing and querying library in C#, closely following the [NoRobo
1919
## NoRobots RFC Compatibility
2020
This library attempts to stick closely to the rules defined in the RFC document, including:
2121
- Global/any user-agent when none is explicitly defined (Section 3.2.1 of RFC)
22-
- Field names (eg. "User-agent") are case sensitive and are character restricted (Section 3.3)
22+
- Field names (eg. "User-agent") are character restricted (Section 3.3)
2323
- Allow/disallow rules are performed by order-of-occurence (Section 3.2.2)
2424
- Loading by URI applies default rules based on access to "robots.txt" (Section 3.1)
2525
- Interoperability for varying line endings (Section 5.2)
@@ -89,4 +89,4 @@ robotsPageDefinition.Can("translate", "OtherBot/1.0"); //False
8989
robotsPageDefinition.CanIndex("superbot/1.0"); //True
9090
robotsPageDefinition.CanFollowLinks("superbot/1.0"); //True
9191
robotsPageDefinition.Can("translate", "superbot/1.0"); //True
92-
```
92+
```

0 commit comments

Comments
 (0)