Skip to content

Commit 22d45f2

Browse files
committed
fix documentation link
1 parent 2080319 commit 22d45f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ composer require robthree/twofactorauth
2323

2424
`TwoFactorAuth` constructor requires an object able to provide a QR Code image. It is the only mandatory argument. This lets you select your preferred QR Code generator/library.
2525

26-
See [QR code providers documentation](docs/qr-codes.md) for more information about the different possibilites.
26+
See [QR code providers documentation](qr-codes.md) for more information about the different possibilites.
2727

2828
Example code:
2929

@@ -36,7 +36,7 @@ use RobThree\Auth\Providers\Qr\EndroidQrCodeProvider; // if using Endroid
3636
$tfa = new TwoFactorAuth(new BaconQrCodeProvider());
3737
// using Endroid
3838
$tfa = new TwoFactorAuth(new EndroidQrCodeProvider());
39-
// using a custom object
39+
// using a custom object implementing IQRCodeProvider interface
4040
$tfa = new TwoFactorAuth(new MyQrCodeProvider());
4141
// using named argument and a variable
4242
$tfa = new TwoFactorAuth(qrcodeprovider: $qrGenerator);

0 commit comments

Comments
 (0)