Skip to content

Commit fab67de

Browse files
authored
Merge pull request #135 from heatwole/fix-typo
Fix typo base_url on arbitrary-ports
2 parents e497958 + 3a49234 commit fab67de

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/arbitrary-ports-hosts.rst

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

0 commit comments

Comments
 (0)