Skip to content

Commit 5dcaeec

Browse files
authored
docs: minor spelling tweaks (#299)
1 parent 7be9dc5 commit 5dcaeec

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

docs/filters_dev.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The base class is located at pyntcloud/filters/base.py
4141

4242
At the very least, all filters receive a PyntCloud when they are instantiated.
4343

44-
The `Filter.exctract_info` method must be overridden in order to extract and save the information required to compute the filter in a attribute.
44+
The `Filter.extract_info` method must be overridden in order to extract and save the information required to compute the filter in a attribute.
4545

4646
See SUBMODULE BASE CLASS below for more information.
4747

docs/samplers_dev.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The base class is located at pyntcloud/filters/base.py
4141

4242
At the very least, all samplers receive a PyntCloud when they are instantiated.
4343

44-
The `Sampler.exctract_info` method must be overridden in order to extract and save the information required to generate the sample in a attribute.
44+
The `Sampler.extract_info` method must be overridden in order to extract and save the information required to generate the sample in a attribute.
4545

4646
See SUBMODULE BASE CLASS below for more information.
4747

@@ -58,7 +58,7 @@ Samplers are grouped into submodules according to which kind of information they
5858

5959
For example, samplers that require a VoxelGrid to be computed are in pyntcloud/samplers/s_voxelgrid.py
6060

61-
As the information required by all the filters in each submodule is the same, we create a submodule base class overriding the __init__ and exctract_info
61+
As the information required by all the filters in each submodule is the same, we create a submodule base class overriding the __init__ and extract_info
6262
methods of the Sampler base class.
6363

6464
For example, in the s_voxelgrid submodule there is a Sampler_Voxelgrid class from which all the samplers that require a Voxelgrid inherit.

docs/scalar_fields_dev.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The base class is located at pyntcloud/scalar_fields/base.py
4242

4343
At the very least, all scalar fields receive a PyntCloud when they are instantiated.
4444

45-
The `ScalarField.exctract_info` method must be overridden in order to extract and save in a attribute the information required to compute the scalar field.
45+
The `ScalarField.extract_info` method must be overridden in order to extract and save in a attribute the information required to compute the scalar field.
4646

4747
See SUBMODULE BASE CLASS below for more information.
4848

@@ -59,7 +59,7 @@ Scalar fields are grouped in submodules according to which kind of information t
5959

6060
For example, scalar fields that require a VoxelGrid to be computed are in pyntcloud/scalar_fields/sf_voxelgrid.py
6161

62-
As the information required by all the scalar fields in each submodule is the same, we create a submodule base class overriding the __init__ and exctract_info
62+
As the information required by all the scalar fields in each submodule is the same, we create a submodule base class overriding the __init__ and extract_info
6363
methods of the ScalarField base class.
6464

6565
For example, in the sf_voxelgrid submodule there is a ScalarField_Voxelgrid class from which all the scalar fields that require a VoxelGrid inherit.

docs/structures.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Structures
66

77
.. currentmodule:: pyntcloud
88

9-
Structures are used for adding superpowers to PyntCloud intances.
9+
Structures are used for adding superpowers to PyntCloud instances.
1010

1111
For example, a `VoxelGrid` can be used for:
1212

0 commit comments

Comments
 (0)