Skip to content

Commit a487ab1

Browse files
committed
fix typo in reference to the pbkdf2 password manager class.
1 parent 439a7a7 commit a487ab1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/presentations/session03.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ The job of comparing passwords should belong to the ``User`` object.
511511
.. code-block:: python
512512
513513
# add this import at the top
514-
# from cryptacular.pbkdf2 import PBKDF2PassordManager as Manager
514+
# from cryptacular.pbkdf2 import PBKDF2PasswordManager as Manager
515515
from cryptacular.bcrypt import BCRYPTPasswordManager as Manager
516516
517517
# add this method to the User class:
@@ -535,7 +535,7 @@ We'll also need to have a user for our system.
535535
.. code-block:: python
536536
537537
# add the import
538-
# from cryptacular.pbkdf2 import PBKDF2PassordManager as Manager
538+
# from cryptacular.pbkdf2 import PBKDF2PasswordManager as Manager
539539
from cryptacular.bcrypt import BCRYPTPasswordManager as Manager
540540
from ..models import User
541541
# and update the main function like so:

0 commit comments

Comments
 (0)