diff options
author | konsumlamm <44230978+konsumlamm@users.noreply.github.com> | 2021-03-10 19:39:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-10 10:39:23 -0800 |
commit | 9819fb21d8db818c0b3027d4e6ba58dc550b77c0 (patch) | |
tree | c96be69e439f34b4f191ec5a25ce6ef7b2e0d766 /lib/std/jsformdata.nim | |
parent | eb07a5a75b63110642c5ce6f9126c9c8af231a64 (diff) | |
download | Nim-9819fb21d8db818c0b3027d4e6ba58dc550b77c0.tar.gz |
Use `.. warning::` (#17320)
Diffstat (limited to 'lib/std/jsformdata.nim')
-rw-r--r-- | lib/std/jsformdata.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/jsformdata.nim b/lib/std/jsformdata.nim index 2728fbdd0..120f8742d 100644 --- a/lib/std/jsformdata.nim +++ b/lib/std/jsformdata.nim @@ -17,7 +17,7 @@ func add*(self: FormData; name: cstring; value: SomeNumber | bool | cstring, fil func delete*(self: FormData; name: cstring) {.importjs: "#.$1(#)".} ## https://developer.mozilla.org/en-US/docs/Web/API/FormData/delete ## - ## .. Warning:: Deletes *all items* with the same key name. + ## .. warning:: Deletes *all items* with the same key name. func getAll*(self: FormData; name: cstring): seq[cstring] {.importjs: "#.$1(#)".} ## https://developer.mozilla.org/en-US/docs/Web/API/FormData/getAll |