Skip to content
This repository was archived by the owner on Feb 18, 2025. It is now read-only.

Commit ad65ebd

Browse files
author
Kyle Swank
authored
Merge pull request #373 from e28eta/master
Fix typos in sample code
2 parents 12d5d44 + 5b8a779 commit ad65ebd

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Demos/App Demo for iOS Swift/App Demo for iOS Swift/ChangePasswordViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class ChangePasswordViewController: UIViewController {
6464
// If YES, the 1Password will guarantee that the generated password will contain at least one digit (number between 0 and 9). Passing NO will not exclude digits from the generated password.
6565
AppExtensionGeneratedPasswordRequireDigitsKey: (true),
6666

67-
// If YES, the 1Password will guarantee that the generated password will contain at least one symbol (See the list bellow). Passing NO with will exclude symbols from the generated password.
67+
// If YES, the 1Password will guarantee that the generated password will contain at least one symbol (See the list below). Passing NO will not exclude symbols from the generated password.
6868
AppExtensionGeneratedPasswordRequireSymbolsKey: (true),
6969

7070
// Here are all the symbols available in the the 1Password Password Generator:

Demos/App Demo for iOS Swift/App Demo for iOS Swift/RegisterViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class RegisterViewController: UIViewController {
5454
// If YES, the 1Password will guarantee that the generated password will contain at least one digit (number between 0 and 9). Passing NO will not exclude digits from the generated password.
5555
AppExtensionGeneratedPasswordRequireDigitsKey: (true),
5656

57-
// If YES, the 1Password will guarantee that the generated password will contain at least one symbol (See the list bellow). Passing NO with will exclude symbols from the generated password.
57+
// If YES, the 1Password will guarantee that the generated password will contain at least one symbol (See the list below). Passing NO will not exclude symbols from the generated password.
5858
AppExtensionGeneratedPasswordRequireSymbolsKey: (true),
5959

6060
// Here are all the symbols available in the the 1Password Password Generator:

Demos/App Demo for iOS/App Demo for iOS/ChangePasswordViewController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ - (IBAction)changePasswordIn1Password:(id)sender {
6767
// If YES, the 1Password will guarantee that the generated password will contain at least one digit (number between 0 and 9). Passing NO will not exclude digits from the generated password.
6868
AppExtensionGeneratedPasswordRequireDigitsKey: @(YES),
6969

70-
// If YES, the 1Password will guarantee that the generated password will contain at least one symbol (See the list bellow). Passing NO with will exclude symbols from the generated password.
70+
// If YES, the 1Password will guarantee that the generated password will contain at least one symbol (See the list below). Passing NO will not exclude symbols from the generated password.
7171
AppExtensionGeneratedPasswordRequireSymbolsKey: @(YES),
7272

7373
// Here are all the symbols available in the the 1Password Password Generator:

Demos/App Demo for iOS/App Demo for iOS/RegisterViewController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ - (IBAction)saveLoginTo1Password:(id)sender {
5858
// If YES, the 1Password will guarantee that the generated password will contain at least one digit (number between 0 and 9). Passing NO will not exclude digits from the generated password.
5959
AppExtensionGeneratedPasswordRequireDigitsKey: @(YES),
6060

61-
// If YES, the 1Password will guarantee that the generated password will contain at least one symbol (See the list bellow). Passing NO with will exclude symbols from the generated password.
61+
// If YES, the 1Password will guarantee that the generated password will contain at least one symbol (See the list below). Passing NO will not exclude symbols from the generated password.
6262
AppExtensionGeneratedPasswordRequireSymbolsKey: @(YES),
6363

6464
// Here are all the symbols available in the the 1Password Password Generator:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ Adding 1Password to your registration screen is very similar to adding 1Password
163163
// If YES, the 1Password will guarantee that the generated password will contain at least one digit (number between 0 and 9). Passing NO will not exclude digits from the generated password.
164164
AppExtensionGeneratedPasswordRequireDigitsKey: @(YES),
165165

166-
// If YES, the 1Password will guarantee that the generated password will contain at least one symbol (See the list bellow). Passing NO with will exclude symbols from the generated password.
166+
// If YES, the 1Password will guarantee that the generated password will contain at least one symbol (See the list below). Passing NO will not exclude symbols from the generated password.
167167
AppExtensionGeneratedPasswordRequireSymbolsKey: @(YES),
168168

169169
// Here are all the symbols available in the the 1Password Password Generator:
@@ -237,7 +237,7 @@ Adding 1Password to your change password screen is very similar to adding 1Passw
237237
// If YES, the 1Password will guarantee that the generated password will contain at least one digit (number between 0 and 9). Passing NO will not exclude digits from the generated password.
238238
AppExtensionGeneratedPasswordRequireDigitsKey: @(YES),
239239

240-
// If YES, the 1Password will guarantee that the generated password will contain at least one symbol (See the list bellow). Passing NO with will exclude symbols from the generated password.
240+
// If YES, the 1Password will guarantee that the generated password will contain at least one symbol (See the list below). Passing NO will not exclude symbols from the generated password.
241241
AppExtensionGeneratedPasswordRequireSymbolsKey: @(YES),
242242

243243
// Here are all the symbols available in the the 1Password Password Generator:

0 commit comments

Comments
 (0)