Skip to content

Commit

Permalink
.Net: Fix typo (#9824)
Browse files Browse the repository at this point in the history
### Motivation and Context

<!-- Thank you for your contribution to the semantic-kernel repo!
Please help reviewers and future users, providing the following
information:
  1. Why is this change required?
  2. What problem does it solve?
  3. What scenario does it contribute to?
  4. If it fixes an open issue, please link to the issue here.
-->
A typo is causing the spell check in our pipeline to fail, thus block
PRs.

### Description
Fix the typo.

<!-- Describe your changes, the overall approach, the underlying design.
These notes will help understanding how your code works. Thanks! -->

### Contribution Checklist

<!-- Before submitting this PR, please make sure: -->

- [ ] The code builds clean without any errors or warnings
- [ ] The PR follows the [SK Contribution
Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md)
and the [pre-submission formatting
script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts)
raises no violations
- [ ] All unit tests pass, and I have added new tests where possible
- [ ] I didn't break anyone 😄
  • Loading branch information
TaoChenOSU authored Nov 25, 2024
1 parent 27a89ba commit 8c481df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ private static string GetCollectionName(string tableName)
/// Returns base Kusto query.
/// </summary>
/// <remarks>
/// Kusto is an append-only store. Although deletions are possible, they are highly discourged,
/// Kusto is an append-only store. Although deletions are possible, they are highly discouraged,
/// and should only be used in rare cases (see: https://learn.microsoft.com/en-us/azure/data-explorer/kusto/concepts/data-soft-delete#use-cases).
/// As such, the recommended approach for dealing with row updates is versioning.
/// An easy way to achieve this is by using the ingestion time of the record (insertion time).
Expand Down

0 comments on commit 8c481df

Please sign in to comment.