[data-tables] Fixing spelling error. (#15411)

`Ommited` should be `Omitted`
This commit is contained in:
Richard Park 2021-05-25 16:41:07 -07:00 коммит произвёл GitHub
Родитель 84cc669fba
Коммит 4cc4db1216
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -98,16 +98,16 @@ export type TableEntityResult<T> = T & {
*/
etag: string;
/**
* Partition key property. Ommited if a select filter is set and this property is not requested
* Partition key property. Omitted if a select filter is set and this property is not requested
*/
partitionKey?: string;
/**
* Row key property. Ommited if a select filter is set and this property is not requested
* Row key property. Omitted if a select filter is set and this property is not requested
*/
rowKey?: string;
/**
* Timestamp property. This property is assinged by the service on entity creation
* Ommited if a select filter is set and this property is not requested
* Omitted if a select filter is set and this property is not requested
*/
timestamp?: string;
};