Skip to content

Commit f667a7f

Browse files
authored
Update README
1 parent 64dd208 commit f667a7f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Bigcommerce::getProduct(1)->variants(123)->meta_fields(1)->delete();
131131
~~~
132132
**The 'Product' Object has following member functions**
133133

134-
**Member Function works only on 'v3'**
134+
**Member Functions that works only on 'v3'**
135135
All the 'v3' Resource Class has `create(), update() and delete()` functions
136136
~~~php
137137
$product = Bigcommerce::getProduct(1);
@@ -176,7 +176,7 @@ $option_value = $product->options("v3")->values(1);
176176
$option_value->delete();
177177
~~~
178178

179-
**Member Functions works on both 'v2' and 'v3'**
179+
**Member Functions that works on both 'v2' and 'v3'**
180180
Below are the function that works on both `v2` and `v3` versions
181181
you can override the default version by setting it in functions like: `Bigcommerce::getProduct(1)->brand("v3");`
182182

@@ -210,7 +210,7 @@ $reviews = $product->reviews();
210210
// or Bigcommerce::getProductReviews($product_id);
211211
~~~
212212

213-
**Member Functions works only on 'v2'**
213+
**Member Functions that works only on 'v2'**
214214
Some functions may return empty data since 'v2' has been abandoned by Bigcommerce
215215
~~~php
216216
$product = Bigcommerce::getProduct(1);

0 commit comments

Comments
 (0)