diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-04-24 23:29:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-24 23:29:14 +0200 |
commit | 6a37e4426e686028c38d5e915d91e587c5966804 (patch) | |
tree | c1bedaeb2e6137fc023b6e125a56d4cba848add2 /cli/js/deno.ts | |
parent | 6efdacddf30b5247b66596a44226687ff21a8f80 (diff) |
BREAKING CHANGE: rename TLS APIs to camel case (#4888)
This commit renames all APIs containing "TLS" to use camel case
(connectTLS -> connectTls, etc.)
Diffstat (limited to 'cli/js/deno.ts')
-rw-r--r-- | cli/js/deno.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/deno.ts b/cli/js/deno.ts index b75df4a9d..8f6a5ff3e 100644 --- a/cli/js/deno.ts +++ b/cli/js/deno.ts @@ -107,7 +107,7 @@ export { resources, close } from "./ops/resources.ts"; export { signal, signals, Signal, SignalStream } from "./signals.ts"; export { FileInfo, statSync, lstatSync, stat, lstat } from "./ops/fs/stat.ts"; export { symlinkSync, symlink } from "./ops/fs/symlink.ts"; -export { connectTLS, listenTLS, startTLS } from "./tls.ts"; +export { connectTls, listenTls, startTls } from "./tls.ts"; export { truncateSync, truncate } from "./ops/fs/truncate.ts"; export { isatty, setRaw } from "./ops/tty.ts"; export { umask } from "./ops/fs/umask.ts"; |