Skip to content

Commit 2968157

Browse files
correct spelling
1 parent 4d28e0a commit 2968157

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/pandas/pdeps/0018-nullable-object-dtype.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ The proposal introduces a new extension type, tentatively named `"object_nullabl
3838
- All operations on a nullable object array will return a pandas nullable array except where requested, such as `astype`. Methods like `fillna` would still return a nullable object array even though there are no missing values to avoid introducing mixed-propagation behavior.
3939
- Ensure compatibility with pandas functions, like groupby, concatenation, and merging, where the semantics of missing values are critical.
4040
4. **Transition and Interoperability**:
41-
- Users should be able to convert from the legacy object dtype to object_nullable using a constructor or an explicit method (e.g., `pd.array(old_array, dtype="object_nullable")`) using the exisiting api.
41+
- Users should be able to convert from the legacy object dtype to object_nullable using a constructor or an explicit method (e.g., `pd.array(old_array, dtype="object_nullable")`) using the existing api.
4242
- Operations on existing pandas nullable dtypes that would normally produce an object dtype should be updated (or made configurable as a transition path) to yield "object_nullable" in all cases even when missing values are not present to avoid introducing mixed-propagation behavior.
43-
- `ArrowDType` does not offer an `object` dtype for hetrogeneous Python objects and therefore a user requesting arrow dtypes could be given "object_nullable" arrays where appropriate to avoid mixed `pd.NA`/`np.nan` semantics when using `dtype_backend="pyarrow"`.
43+
- `ArrowDType` does not offer an `object` dtype for heterogeneous Python objects and therefore a user requesting arrow dtypes could be given "object_nullable" arrays where appropriate to avoid mixed `pd.NA`/`np.nan` semantics when using `dtype_backend="pyarrow"`.
4444

4545

4646
### Implementation Considerations

0 commit comments

Comments
 (0)