Skip to content

Commit 2d01f84

Browse files
authored
Fix italics in operators security sections (#1242)
1 parent 60d7cca commit 2d01f84

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/source/operators/public-server.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ Automatic Password setup
7878
As of notebook 5.3, the first time you log-in using a token, the server should
7979
give you the opportunity to setup a password from the user interface.
8080

81-
You will be presented with a form asking for the current _token_, as well as
82-
your _new_ _password_ ; enter both and click on ``Login and setup new password``.
81+
You will be presented with a form asking for the current *token*, as well as
82+
your *new password*; enter both and click on ``Login and setup new password``.
8383

8484
Next time you need to log in you'll be able to use the new password instead of
8585
the login token, otherwise follow the procedure to set a password from the

docs/source/operators/security.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ as the information returned by the IdentityProvider is given to the Authorizer w
9191

9292
Authentication always takes precedence because if no user is authenticated,
9393
no authorization checks need to be made,
94-
as all requests requiring _authorization_ must first complete _authentication_.
94+
as all requests requiring *authorization* must first complete *authentication*.
9595

9696
Identity Providers
9797
******************
@@ -118,11 +118,11 @@ This User object will be available as `self.current_user` in any request handler
118118
Request methods decorated with tornado's `@web.authenticated` decorator
119119
will only be allowed if this method returns something.
120120

121-
The User object will be a Python :py:class:`dataclasses.dataclass`, `jupyter_server.auth.User`:
121+
The User object will be a Python :py:class:`dataclasses.dataclass` - `jupyter_server.auth.User`:
122122

123123
.. autoclass:: jupyter_server.auth.User
124124

125-
A custom IdentityProvider _may_ return a custom subclass.
125+
A custom IdentityProvider *may* return a custom subclass.
126126

127127

128128
The next method an identity provider has is :meth:`~jupyter_server.auth.IdentityProvider.identity_model`.
@@ -183,7 +183,7 @@ Authorization
183183
*************
184184

185185
Authorization is the second step in allowing an action,
186-
after a user has been _authenticated_ by the IdentityProvider.
186+
after a user has been *authenticated* by the IdentityProvider.
187187

188188
Authorization in Jupyter Server serves to provide finer grained control of access to its
189189
API resources. With authentication, requests are accepted if the current user is known by

0 commit comments

Comments
 (0)