From daa2d0ecb336490c1f8db1718d3560ac7fb78b15 Mon Sep 17 00:00:00 2001 From: 3n3l <103253630+3n3l@users.noreply.github.com> Date: Sun, 23 Jun 2024 19:50:02 +0200 Subject: [PATCH] [doc] fix typo: 'inheritence' -> 'inheritance' --- docs/lang/articles/advanced/data_oriented_class.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/lang/articles/advanced/data_oriented_class.md b/docs/lang/articles/advanced/data_oriented_class.md index 23e23343c563f..dbdb0df0f8a0d 100644 --- a/docs/lang/articles/advanced/data_oriented_class.md +++ b/docs/lang/articles/advanced/data_oriented_class.md @@ -103,7 +103,7 @@ To know more about `FieldsBuilder`, please refer to [FieldsBuilder](https://docs ## Inheritance of Data-Oriented classes -The Data-Oriented property is automatically carried along with the Python class inheritence. This implies that you can call a Taichi Kernel if any of its ancestor classes is decorated with `@ti.data_oriented`, which is shown in the example below: +The Data-Oriented property is automatically carried along with the Python class inheritance. This implies that you can call a Taichi Kernel if any of its ancestor classes is decorated with `@ti.data_oriented`, which is shown in the example below: An example: ```python