docs(api): typo Diffie Hellman in http.md (#7744)

This commit is contained in:
Supachai Kheawjuy
2023-12-20 02:17:11 +07:00
committed by GitHub
parent db60c92e25
commit 3f131c0411

View File

@@ -171,14 +171,14 @@ Optionally, you can override the trusted CA certificates by passing a value for
});
```
To override Diffie-Helman parameters:
To override Diffie-Hellman parameters:
```ts
Bun.serve({
// ...
tls: {
// other config
dhParamsFile: "/path/to/dhparams.pem", // path to Diffie Helman parameters
dhParamsFile: "/path/to/dhparams.pem", // path to Diffie Hellman parameters
},
});
```