docs: fix typos

Co-authored-by: Andrew Lamb <alamb@influxdata.com>
pull/24376/head
Marco Neumann 2021-07-08 09:17:55 +02:00
parent b528ac2b55
commit bd22dd38ea
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ impl<'a> TableSchemaUpsertHandle<'a> {
table_schema: &'a RwLock<Schema>,
new_schema: &Schema,
) -> Result<Self, SchemaMergerError> {
// Be optimistic and only get a read lock. It is rather rate that the schema will change when new data arrives
// Be optimistic and only get a read lock. It is rather rare that the schema will change when new data arrives
// and we do NOT want to serialize all writes on a single lock.
let table_schema_read = table_schema.read();