Skip to content

Commit 520ebe0

Browse files
committed
minor comment change.
1 parent c3fcd1d commit 520ebe0

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

src/json_string_utilities.F90

+11-12
Original file line numberDiff line numberDiff line change
@@ -403,18 +403,17 @@ end subroutine escape_string
403403
!>
404404
! Remove the escape characters from a JSON string and return it.
405405
!
406-
! The escaped characters are denoted by the '\' character:
407-
!````
408-
! '\"' quotation mark
409-
! '\\' reverse solidus
410-
! '\/' solidus
411-
! '\b' backspace
412-
! '\f' formfeed
413-
! '\n' newline (LF)
414-
! '\r' carriage return (CR)
415-
! '\t' horizontal tab
416-
! '\uXXXX' 4 hexadecimal digits
417-
!````
406+
! The escaped characters are denoted by the `\` character:
407+
!
408+
! * `\"` - quotation mark
409+
! * `\\` - reverse solidus
410+
! * `\/` - solidus
411+
! * `\b` - backspace
412+
! * `\f` - formfeed
413+
! * `\n` - newline (LF)
414+
! * `\r` - carriage return (CR)
415+
! * `\t` - horizontal tab
416+
! * `\uXXXX` - 4 hexadecimal digits
418417

419418
subroutine unescape_string(str_in, str_out, error_message)
420419

0 commit comments

Comments
 (0)