Skip to content

Commit 2a7008d

Browse files
committed
Fix minor doc typos
1 parent 3918605 commit 2a7008d

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

docs/source/basic-tutorial.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ functions available in the `REALM` object (see gssapi-console.py in
2626
try `$ run-lit -e gssapi basic-tutorial.md` when you have both
2727
gssapi_console and yalpt installed). Any actions performed using the
2828
`REALM` object are not part of the GSSAPI library; the `REALM` object
29-
simply contians wrappers to krb5 commands generally run separately from
29+
simply contains wrappers to krb5 commands generally run separately from
3030
the application using GSSAPI.
3131

3232
Names and Credentials
@@ -36,7 +36,7 @@ Two important concepts in GSSAPI are *names* and *credentials*.
3636

3737
*Names*, as the name suggests, identify different entities, be they
3838
users or services. GSSAPI has the concept of different *name types*.
39-
These represent different types of names and corresponding sytaxes
39+
These represent different types of names and corresponding syntax
4040
for representing names as strings.
4141

4242
Suppose we wanted to refer to an HTTP server on the current host.
@@ -95,7 +95,7 @@ Credentials have a *usage*: 'accept' for accepting security contexts,
9595
credentials used for both initiating and accepting security contexts.
9696

9797
Credentials also have an associated *name*, *lifetime* (which may
98-
be `None` for indefinite), and set of *mechansims* with which the
98+
be `None` for indefinite), and set of *mechanisms* with which the
9999
credentials are usable:
100100

101101
>>> server_creds.usage
@@ -132,7 +132,7 @@ the user's already acquired credentials:
132132
>>>
133133

134134
Just like credentials, security contexts are either initiating
135-
contexts, or accepting contexts (they cannot be both). Initating
135+
contexts, or accepting contexts (they cannot be both). Initiating
136136
contexts must specify at least a target name. In this case,
137137
we indicate that we wish to establish a context with the HTTP server
138138
from above. The http server can then accept that context:
@@ -186,7 +186,7 @@ messages, or just sign them:
186186
>>>
187187

188188
Manually passing in a second parameter and checking whether or not encryption
189-
was used can get tedious, so python-gssapi provides two convinience methods
189+
was used can get tedious, so python-gssapi provides two convenience methods
190190
to help with this: `encrypt` and `decrypt`. If the context is set up to use
191191
encryption, they will call `wrap` with encryption. If not, they will
192192
call `wrap` without encryption.

docs/source/credstore.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Common Values for Credentials Store Extensions
22
==============================================
33

44
The credentials store extension is an extension introduced by the MIT krb5
5-
library implementation of GSSAPI. It allows for finer control of creedntials
5+
library implementation of GSSAPI. It allows for finer control of credentials
66
from within a GSSAPI application.
77
Each mechanism can define keywords to manipulate various aspects of their
88
credentials for storage or retrieval operations.

docs/source/gssapi.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Enums and Helper Classes
4646
------------------------
4747

4848
The following enumerations from the low-level API are also
49-
used with the high-level API. For convienience, the are
49+
used with the high-level API. For convenience, they are
5050
imported in the high-level API :mod:`gssapi` module:
5151

5252
.. autoclass:: gssapi.NameType
@@ -68,7 +68,7 @@ imported in the high-level API :mod:`gssapi` module:
6868
.. autoclass:: gssapi.AddressType
6969
:show-inheritance:
7070

71-
Similiarly, there are a couple classes from the low-level API
71+
Similarly, there are a couple classes from the low-level API
7272
that are imported into the high-level API module. These classes
7373
are less likely to be used directly by a user, but are returned
7474
by several methods:

0 commit comments

Comments
 (0)