Skip to content

Commit

Permalink
Make messages have consistent grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
dbhynds committed Jun 28, 2024
1 parent d22bd7c commit 9064ed0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LtiMessageLaunch.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ class LtiMessageLaunch
public const ERR_FETCH_PUBLIC_KEY = 'Failed to fetch public key.';
public const ERR_NO_PUBLIC_KEY = 'Unable to find public key.';
public const ERR_NO_MATCHING_PUBLIC_KEY = 'Unable to find a public key which matches your JWT.';
public const ERR_STATE_NOT_FOUND = 'Please make sure you have cookies and cross-site tracking enabled in the privacy and security settings of your browser';
public const ERR_STATE_NOT_FOUND = 'Please make sure you have cookies and cross-site tracking enabled in the privacy and security settings of your browser.';
public const ERR_MISSING_ID_TOKEN = 'Missing id_token.';
public const ERR_INVALID_ID_TOKEN = 'Invalid id_token, JWT must contain 3 parts';
public const ERR_INVALID_ID_TOKEN = 'Invalid id_token, JWT must contain 3 parts.';
public const ERR_MISSING_NONCE = 'Missing Nonce.';
public const ERR_INVALID_NONCE = 'Invalid Nonce.';

Expand Down

0 comments on commit 9064ed0

Please sign in to comment.