Skip to content
This repository was archived by the owner on Jan 10, 2022. It is now read-only.

Commit 964a76b

Browse files
committed
Spelling.
1 parent e3755fe commit 964a76b

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ This projects adheres to [Semantic Versioning](http://semver.org/) and [Keep a C
2727
- Updated packages.
2828

2929
## [2.0.2] - 2019-03-29
30-
- Added support for additional payment data like customer, adresses, payment lines, etc.
30+
- Added support for additional payment data like customer, addresses, payment lines, etc.
3131
- Added gateway for AfterPay, Bancontact, Bank Transfer, Credit Card, Focum, Giropay, Maestro, PayPal and SOFORT.
3232

3333
## [2.0.1] - 2018-12-12
@@ -51,7 +51,7 @@ This projects adheres to [Semantic Versioning](http://semver.org/) and [Keep a C
5151
## [1.0.1] - 2016-02-12
5252
- WordPress Coding Standards optimizations.
5353
- Removed status code from redirect in status_update.
54-
- Added Pronamic gateway, whith payment method selector in plugin settings.
54+
- Added Pronamic gateway, with payment method selector in plugin settings.
5555
- iDEAL gateway now uses the iDEAL payment method.
5656

5757
## 1.0.0 - 2015-05-26

src/WPeCommerce.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,55 +28,55 @@
2828
*/
2929
class WPeCommerce {
3030
/**
31-
* Purche status
31+
* Purchase status
3232
*
3333
* @link https://plugins.trac.wordpress.org/browser/wp-e-commerce/tags/3.8.7.6.2/wpsc-core/wpsc-functions.php#L115
3434
* @var int
3535
*/
3636
const PURCHASE_STATUS_INCOMPLETE_SALE = 1;
3737

3838
/**
39-
* Purche status
39+
* Purchase status
4040
*
4141
* @link https://plugins.trac.wordpress.org/browser/wp-e-commerce/tags/3.8.7.6.2/wpsc-core/wpsc-functions.php#L115
4242
* @var int
4343
*/
4444
const PURCHASE_STATUS_ORDER_RECEIVED = 2;
4545

4646
/**
47-
* Purche status
47+
* Purchase status
4848
*
4949
* @link https://plugins.trac.wordpress.org/browser/wp-e-commerce/tags/3.8.7.6.2/wpsc-core/wpsc-functions.php#L115
5050
* @var int
5151
*/
5252
const PURCHASE_STATUS_ACCEPTED_PAYMENT = 3;
5353

5454
/**
55-
* Purche status
55+
* Purchase status
5656
*
5757
* @link https://plugins.trac.wordpress.org/browser/wp-e-commerce/tags/3.8.7.6.2/wpsc-core/wpsc-functions.php#L115
5858
* @var int
5959
*/
6060
const PURCHASE_STATUS_JOB_DISPATCHED = 4;
6161

6262
/**
63-
* Purche status
63+
* Purchase status
6464
*
6565
* @link https://plugins.trac.wordpress.org/browser/wp-e-commerce/tags/3.8.7.6.2/wpsc-core/wpsc-functions.php#L115
6666
* @var int
6767
*/
6868
const PURCHASE_STATUS_CLOSED_ORDER = 5;
6969

7070
/**
71-
* Purche status
71+
* Purchase status
7272
*
7373
* @link https://plugins.trac.wordpress.org/browser/wp-e-commerce/tags/3.8.7.6.2/wpsc-core/wpsc-functions.php#L115
7474
* @var int
7575
*/
7676
const PURCHASE_STATUS_DECLINED_PAYMENT = 6;
7777

7878
/**
79-
* Check if WP e-Comerce is active (Automattic/developer style)
79+
* Check if WP e-Commerce is active (Automattic/developer style)
8080
*
8181
* @link https://github.com/wp-e-commerce/WP-e-Commerce/blob/v3.8.9.5/wp-shopping-cart.php#L11
8282
* @link https://github.com/Automattic/developer/blob/1.1.2/developer.php#L73

0 commit comments

Comments
 (0)