Skip to content

Commit

Permalink
fix docs (#1576)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-srudenko authored Oct 18, 2024
1 parent 5f9583c commit b148930
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/component_guides/logging/where_to_log/log_in_snowflake.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ Connecting TruLens to a Snowflake database for logging traces and evaluations on
from snowflake.snowpark import Session
from trulens.connectors.snowflake import SnowflakeConnector
from trulens.core import TruSession
connnection_parameters = {
connection_parameters = {
account: "<account>",
user: "<user>",
password: "<password>",
database_name: "<database>",
schema_name: "<schema>",
database: "<database>",
schema: "<schema>",
warehouse: "<warehouse>",
role: "<role>",
}
Expand All @@ -50,8 +50,8 @@ Connecting TruLens to a Snowflake database for logging traces and evaluations on
account="<account>",
user="<user>",
password="<password>",
database_name="<database>",
schema_name="<schema>",
database="<database>",
schema="<schema>",
warehouse="<warehouse>",
role="<role>",
)
Expand Down

0 comments on commit b148930

Please sign in to comment.