Sender.html_str → Sender.html_string

...I'm so indecisive
This commit is contained in:
Starbeamrainbowlabs 2022-02-07 17:26:45 +00:00
parent f4016857cd
commit eb2f871d2c
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ class Sender {
* @param {string} html_string The string of HTML to send.
* @return {void}
*/
html_str(status_code, html_string) {
html_string(status_code, html_string) {
this.string(status_code, "text/html", html_string);
}
/**