Skip to content

Commit 0ec42aa

Browse files
committed
Auto-generated commit
1 parent 5c5c9a8 commit 0ec42aa

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-08-15)
7+
## Unreleased (2025-08-16)
88

99
<section class="bug-fixes">
1010

@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`212b623`](https://github.com/stdlib-js/stdlib/commit/212b623d3f01f92a8bbf29b6e8f6e67fa879cb40) - **docs:** rename function alias _(by Athan Reines)_
2526
- [`1c9a2da`](https://github.com/stdlib-js/stdlib/commit/1c9a2dad4c7ff11aefab03110d9c0fa7ad94e969) - **docs:** update copy _(by Athan Reines)_
2627
- [`d02db19`](https://github.com/stdlib-js/stdlib/commit/d02db19483a002759417943f0a6c8521fdfe1a4c) - **docs:** update note _(by Athan Reines)_
2728
- [`7e695d4`](https://github.com/stdlib-js/stdlib/commit/7e695d4145153f2c44af922aad5e4f6e9a131b90) - **style:** remove space _(by Athan Reines)_

http-server/docs/repl.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,24 +37,24 @@
3737
Examples
3838
--------
3939
// Basic usage:
40-
> var httpServer = {{alias}}()
40+
> var boot = {{alias}}()
4141
<Function>
4242

4343
// Provide a request callback:
4444
> function onRequest( request, response ) {
4545
... console.log( request.url );
4646
... response.end( 'OK' );
4747
... };
48-
> httpServer = {{alias}}( onRequest )
48+
> boot = {{alias}}( onRequest )
4949
<Function>
5050

5151
// Specify a specific port:
5252
> var opts = { 'port': 7331 };
53-
> httpServer = {{alias}}( opts )
53+
> boot = {{alias}}( opts )
5454
<Function>
5555

5656

57-
httpServer( done )
57+
boot( done )
5858
Creates an HTTP server.
5959

6060
Parameters
@@ -71,8 +71,8 @@ httpServer( done )
7171
... console.log( 'Success!' );
7272
... server.close();
7373
... };
74-
> var httpServer = {{alias}}();
75-
> httpServer( done );
74+
> var boot = {{alias}}();
75+
> boot( done );
7676

7777
See Also
7878
--------

0 commit comments

Comments
 (0)