Skip to content

Commit 19691bb

Browse files
committed
Packaging documentation tweaks
1 parent 344491b commit 19691bb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/packaging/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ That is done quite easily by manually triggering the [release workflow](https://
2323

2424
## Then, company-specific tasks
2525

26-
- Update the HTTPie version bundled into termible ([example](https://github.com/httpie/termible/pull/1)).
26+
- Blank the `master_and_released_docs_differ_after` value in [config.json](https://github.com/httpie/httpie/blob/master/docs/config.json).
27+
- Update the HTTPie version bundled into [Termible](https://termible.io/) ([example](https://github.com/httpie/termible/pull/1)).
2728

2829
## Finally, spread dowstream
2930

httpie/output/lexers/json.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class EnhancedJsonLexer(RegexLexer):
2020
tokens = {
2121
'root': [
2222
# Eventual non-JSON data prefix followed by actual JSON body.
23-
# FIX: data prefix + number (integer or float) are not correctly handled.
23+
# FIX: data prefix + number (integer or float) is not correctly handled.
2424
(
2525
fr'({PREFIX_REGEX})' + r'((?:[{\["]|true|false|null).+)',
2626
bygroups(PREFIX_TOKEN, using(JsonLexer))

0 commit comments

Comments
 (0)