Skip to content

Commit 5c3c524

Browse files
committed
Fixed a typographical error in the README.md file
1 parent 1971280 commit 5c3c524

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

README.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ Paystack::getAllTransactions();
264264
paystack()->getAllTransactions();
265265

266266
/**
267-
* This method generates a unique super secure cryptograhical hash token to use as transaction reference
267+
* This method generates a unique super secure cryptographic hash token to use as transaction reference
268268
* @returns string
269269
*/
270270
Paystack::genTranxRef();
@@ -327,8 +327,8 @@ A sample form will look like so:
327327

328328
```html
329329
<form method="POST" action="{{ route('pay') }}" accept-charset="UTF-8" class="form-horizontal" role="form">
330-
<div class="row" style="margin-bottom:40px;">
331-
<div class="col-md-8 col-md-offset-2">
330+
<div class="row" style="margin-bottom:40px;">
331+
<div class="col-md-8 col-md-offset-2">
332332
<p>
333333
<div>
334334
Lagos Eyo Print Tee Shirt
@@ -344,16 +344,15 @@ A sample form will look like so:
344344
<input type="hidden" name="reference" value="{{ Paystack::genTranxRef() }}"> {{-- required --}}
345345
{{ csrf_field() }} {{-- works only when using laravel 5.1, 5.2 --}}
346346

347-
<input type="hidden" name="_token" value="{{ csrf_token() }}"> {{-- employ this in place of csrf_field only in laravel 5.0 --}}
348-
347+
<input type="hidden" name="_token" value="{{ csrf_token() }}"> {{-- employ this in place of csrf_field only in laravel 5.0 --}}
349348

350349
<p>
351-
<button class="btn btn-success btn-lg btn-block" type="submit" value="Pay Now!">
352-
<i class="fa fa-plus-circle fa-lg"></i> Pay Now!
353-
</button>
350+
<button class="btn btn-success btn-lg btn-block" type="submit" value="Pay Now!">
351+
<i class="fa fa-plus-circle fa-lg"></i> Pay Now!
352+
</button>
354353
</p>
355-
</div>
356354
</div>
355+
</div>
357356
</form>
358357
```
359358

@@ -367,7 +366,7 @@ We must validate if the redirect to our site is a valid request (we don't want i
367366

368367
In the controller that handles the request coming from the payment provider, we have
369368

370-
`Paystack::getPaymentData()` - This function calls the verification methods and ensure it is a valid transction else it throws an exception.
369+
`Paystack::getPaymentData()` - This function calls the verification methods and ensure it is a valid transaction else it throws an exception.
371370

372371
You can test with these details
373372

0 commit comments

Comments
 (0)