aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChloe Kudryavtsev <code@toast.bunkerlabs.net>2023-03-21 21:11:05 -0400
committerChloe Kudryavtsev <code@toast.bunkerlabs.net>2023-03-21 21:11:05 -0400
commit9147e49552407e839e739e39cef8a11cbec5a89d (patch)
tree24f1b96e820add84b231814354734aa0a7d4e07a
parentnative: add libcurl version detection (diff)
docs: update prefixes to be accurate
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 39cbdb1..e2f3bad 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@ In cases of bitmaps and enums (including magic numbers), they are translated as
For example, `CURLOPT_TCP_FASTOPEN` becomes `:tcp-fastopen`.
Enums (and bitmap members) are translated using a prefix notation.
-For example, `CURLPROXY_HTTP` becomes `:proxytype/http`.
+For example, `CURLPROXY_HTTP` becomes `:proxy/http`.
Bitmaps are translates back and forth using indexables (arrays and tuples).
-For example, `CURLAUTH_BASIC | CURLAUTH_DIGEST` becomes `[:httpauth/basic :httpauth/digest]`.
+For example, `CURLAUTH_BASIC | CURLAUTH_DIGEST` becomes `[:auth/basic :auth/digest]`.