Update chip_tool_guide.md with basicinformation cluster (#28077)
* Update chip_tool_guide.md with basicinformation cluster
Update guide to reflect that `basic` cluster was renamed to `basicinformation`
* Restyled by prettier-markdown
---------
Co-authored-by: Restyled.io <commits@restyled.io>
diff --git a/docs/guides/chip_tool_guide.md b/docs/guides/chip_tool_guide.md
index ca95871..2561a6c 100644
--- a/docs/guides/chip_tool_guide.md
+++ b/docs/guides/chip_tool_guide.md
@@ -423,29 +423,31 @@
### Step 8: Read basic information from the Matter device
-Every Matter device supports the Basic cluster, which maintains the collection
-of attributes that a controller can obtain from a device. These attributes can
-include the vendor name, the product name, or the software version.
+Every Matter device supports the Basic Information cluster, which maintains the
+collection of attributes that a controller can obtain from a device. These
+attributes can include the vendor name, the product name, or the software
+version.
-Use the CHIP Tool's `read` command on the `basic` cluster to read those values
-from the device:
+Use the CHIP Tool's `read` command on the `basicinformation` cluster to read
+those values from the device:
```
-$ ./chip-tool basic read vendor-name <node_id> <endpoint_id>
-$ ./chip-tool basic read product-name <node_id> <endpoint_id>
-$ ./chip-tool basic read software-version <node_id> <endpoint_id>
+$ ./chip-tool basicinformation read vendor-name <node_id> <endpoint_id>
+$ ./chip-tool basicinformation read product-name <node_id> <endpoint_id>
+$ ./chip-tool basicinformation read software-version <node_id> <endpoint_id>
```
In these commands:
- _<node_id\>_ is the user-defined ID of the commissioned node.
-- _<endpoint_id\>_ is the ID of the endpoint with Basic cluster implemented.
+- _<endpoint_id\>_ is the ID of the endpoint with Basic Information cluster
+ implemented.
-You can also use the following command to list all available commands for Basic
-cluster:
+You can also use the following command to list all available commands for the
+Basic Information cluster:
```
-$ ./chip-tool basic
+$ ./chip-tool basicinformation
```
<hr>