fix: typo in influxdb3 client docs (#25977)

pbarnett/fix-docker-command
clia 2025-02-10 10:10:33 +08:00 committed by GitHub
parent cf1dd5c831
commit c94237942e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -911,7 +911,7 @@ impl QueryRequestBuilder<'_> {
///
/// let client = Client::new("http://localhost:8181")?;
/// let response_bytes = client
/// .api_v3_query_sql("db_name", "SELECT * FROM foo WHERE bar = $bar AND foo > $fooz")
/// .api_v3_query_sql("db_name", "SELECT * FROM foo WHERE bar = $bar AND foo > $foo")
/// .with_params_from([
/// ("bar", json!(false)),
/// ("foo", json!(10)),