Skip to content

Commit 0e840bb

Browse files
committed
Update std.jsonnet
1 parent 5596615 commit 0e840bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/std.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -853,7 +853,7 @@ limitations under the License.
853853
'\\t'
854854
else
855855
local cp = std.codepoint(ch);
856-
if cp < 32 || (cp >= 128 && cp <= 159) then
856+
if cp < 32 || (cp >= 127 && cp <= 159) then
857857
'\\u%04x' % [cp]
858858
else
859859
ch;

0 commit comments

Comments
 (0)