Commit b277a4b7d09 for woocommerce
commit b277a4b7d094331f4a98f8177cd73ad09ec21726
Author: Amit Raj <77401999+amitraj2203@users.noreply.github.com>
Date: Mon May 4 20:31:39 2026 +0530
Fix: Correct misspelled words in data-stores.md and style-guide.md (#64230)
* Fix typo in data store documentation: "hydates" to "hydrates"
* Fix typo in style guide: "understable" to "understandable"
* Add changelog file
* Update fix-issue-64229
---------
Co-authored-by: Michael Pretty <prettyboymp@users.noreply.github.com>
diff --git a/docs/best-practices/data-management/data-stores.md b/docs/best-practices/data-management/data-stores.md
index 63f832e7260..531cdd02180 100644
--- a/docs/best-practices/data-management/data-stores.md
+++ b/docs/best-practices/data-management/data-stores.md
@@ -108,7 +108,7 @@ public function read( &$coupon ) {
// Read should do a check to see if this is a valid coupon
// and otherwise throw an 'Invalid coupon.' exception.
// For valid coupons, set $data to contain our database result.
- // All props should be set using set_props with output from the database. This "hydates" the CRUD data object.
+ // All props should be set using set_props with output from the database. This "hydrates" the CRUD data object.
$coupon_id = $coupon->get_id();
$coupon->set_props( array(
'code' => $data->code,
diff --git a/docs/contribution/contributing-docs/style-guide.md b/docs/contribution/contributing-docs/style-guide.md
index 2493658e036..478fe244464 100644
--- a/docs/contribution/contributing-docs/style-guide.md
+++ b/docs/contribution/contributing-docs/style-guide.md
@@ -28,7 +28,7 @@ This style guide is intended to provide guidelines for creating effective and us
- Our target audience has a range of roles and abilities. When creating a tutorial or how-to guide, it's important to consider the intended audience. Are they beginners or advanced users? What is their technical background? Understanding the audience can help guide the level of detail and the choice of language used in the guide.
-- Use language understable even by readers with little technical knowledge and readers whose first language might not be English.
+- Use language understandable even by readers with little technical knowledge and readers whose first language might not be English.
- Consider that this might be the first WooCommerce documentation page the reader has seen. They may have arrived here via a Google search or another website. Give the reader enough context about the topic and link words and phrases to other relevant Docs articles as often as possible.
diff --git a/plugins/woocommerce/changelog/fix-issue-64229 b/plugins/woocommerce/changelog/fix-issue-64229
new file mode 100644
index 00000000000..7b8af1f225e
--- /dev/null
+++ b/plugins/woocommerce/changelog/fix-issue-64229
@@ -0,0 +1,4 @@
+Significance: patch
+Type: tweak
+
+Fix misspelled words in data-stores.md ("hydates" → "hydrates") and style-guide.md ("understable" → "understandable").