Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document that duplicated keys in bencode directory are not allowed #154

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion beps/bep_0003.html
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ <h1>bencoding</h1>
bencoded) followed by an 'e'. For example <tt class="docutils literal">l4:spam4:eggse</tt>
corresponds to ['spam', 'eggs'].</li>
<li>Dictionaries are encoded as a 'd' followed by a list of alternating
keys and their corresponding values followed by an 'e'. For example,
unique keys and their corresponding values followed by an 'e'. For example,
<tt class="docutils literal">d3:cow3:moo4:spam4:eggse</tt> corresponds to {'cow': 'moo',
'spam': 'eggs'} and <tt class="docutils literal">d4:spaml1:a1:bee</tt> corresponds to
{'spam': ['a', 'b']}. Keys must be strings and appear in sorted order
Expand Down
2 changes: 1 addition & 1 deletion beps/bep_0003.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ bencoding
corresponds to ['spam', 'eggs'].

- Dictionaries are encoded as a 'd' followed by a list of alternating
keys and their corresponding values followed by an 'e'. For example,
unique keys and their corresponding values followed by an 'e'. For example,
``d3:cow3:moo4:spam4:eggse`` corresponds to {'cow': 'moo',
'spam': 'eggs'} and ``d4:spaml1:a1:bee`` corresponds to
{'spam': ['a', 'b']}. Keys must be strings and appear in sorted order
Expand Down
2 changes: 1 addition & 1 deletion beps/bep_0052.html
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ <h1>bencoding</h1>
bencoded) followed by an 'e'. For example <tt class="docutils literal">l4:spam4:eggse</tt>
corresponds to ['spam', 'eggs'].</li>
<li>Dictionaries are encoded as a 'd' followed by a list of alternating
keys and their corresponding values followed by an 'e'. For example,
unique keys and their corresponding values followed by an 'e'. For example,
<tt class="docutils literal">d3:cow3:moo4:spam4:eggse</tt> corresponds to {'cow': 'moo',
'spam': 'eggs'} and <tt class="docutils literal">d4:spaml1:a1:bee</tt> corresponds to
{'spam': ['a', 'b']}. Keys must be strings and appear in sorted order
Expand Down
2 changes: 1 addition & 1 deletion beps/bep_0052.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ bencoding
corresponds to ['spam', 'eggs'].

- Dictionaries are encoded as a 'd' followed by a list of alternating
keys and their corresponding values followed by an 'e'. For example,
unique keys and their corresponding values followed by an 'e'. For example,
``d3:cow3:moo4:spam4:eggse`` corresponds to {'cow': 'moo',
'spam': 'eggs'} and ``d4:spaml1:a1:bee`` corresponds to
{'spam': ['a', 'b']}. Keys must be strings and appear in sorted order
Expand Down