diff --git a/docs/docs/examples/data_connectors/PsychicDemo.ipynb b/docs/docs/examples/data_connectors/PsychicDemo.ipynb index 1ff4ea95938a8..416b84052e477 100644 --- a/docs/docs/examples/data_connectors/PsychicDemo.ipynb +++ b/docs/docs/examples/data_connectors/PsychicDemo.ipynb @@ -84,7 +84,7 @@ "source": [ "# Get Psychic API key from https://dashboard.psychic.dev/api-keys\n", "psychic_key = \"PSYCHIC_API_KEY\"\n", - "# Connector ID and Account ID are typically set programatically based on the application state.\n", + "# Connector ID and Account ID are typically set programmatically based on the application state.\n", "account_id = \"ACCOUNT_ID\"\n", "connector_id = \"notion\"\n", "documents = PsychicReader(psychic_key=psychic_key).load_data(\n", diff --git a/docs/docs/module_guides/loading/ingestion_pipeline/transformations.md b/docs/docs/module_guides/loading/ingestion_pipeline/transformations.md index 945556c52ede7..52589486babfb 100644 --- a/docs/docs/module_guides/loading/ingestion_pipeline/transformations.md +++ b/docs/docs/module_guides/loading/ingestion_pipeline/transformations.md @@ -61,7 +61,7 @@ index = VectorStoreIndex.from_documents( You can implement any transformation yourself by implementing the base class. -The following custom transformation will remove any special characters or punctutaion in text. +The following custom transformation will remove any special characters or punctuation in text. ```python import re