Skip to content

Commit fe4c8d3

Browse files
committed
Fix typo base_url on arbitrary-ports
1 parent 2726bca commit fe4c8d3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/arbitrary-ports.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ accessing it from a classic notebook extension.
8080
import { PageConfig } from '@jupyterlab/coreutils';
8181
8282
// Get base URL of current notebook server
83-
let baseUrl = PageConfig.getBaseUrl()
83+
let base_url = PageConfig.getBaseUrl()
8484
8585
// Construct URL of our proxied service
86-
let serviceUrl = base_url + 'proxy/' + port;
86+
let service_url = base_url + 'proxy/' + port;
8787
88-
// Do stuff with your serviceUrl
88+
// Do stuff with your service_url

0 commit comments

Comments
 (0)