Skip to content

Commit 9b3ecf8

Browse files
committed
v1.0.3
1 parent 22a463a commit 9b3ecf8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

JsonConverter.bas

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Attribute VB_Name = "JsonConverter"
22
''
3-
' VBA-JSON v1.0.2
3+
' VBA-JSON v1.0.3
44
' (c) Tim Hall - https://github.com/VBA-tools/VBA-JSON
55
'
66
' JSON Converter for VBA
@@ -505,7 +505,7 @@ Private Function json_Encode(ByVal json_Text As Variant) As String
505505

506506
' When AscW returns a negative number, it returns the twos complement form of that number.
507507
' To convert the twos complement notation into normal binary notation, add 0xFFF to the return result.
508-
' https://support.microsoft.com/en-us/kb/272138
508+
' https://support.microsoft.com/en-us/kb/272138
509509
If json_AscCode < 0 Then
510510
json_AscCode = json_AscCode + 65536
511511
End If

specs/VBA-JSON - Specs.xlsm

6.55 KB
Binary file not shown.

0 commit comments

Comments
 (0)