-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Fix invalid UTF-8 characters #2095
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix invalid UTF-8 characters #2095
Conversation
The fixes were made by Claude Sonnet 4
Just very quickly skimming this but a lot of these seem wrong. |
Thanks, I made another pass that replaces some of the dashes with spaces. Let me know if you still find anything that's incorrect. |
UID: NF:control.IMediaControl.GetState | ||
title: IMediaControl::GetState (control.h) | ||
description: The GetState method retrieves the state of the filter graph—paused, running, or stopped. | ||
description: The GetState method retrieves the state of the filter graph: paused, running, or stopped. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@GrantMeStrength please note:
- It's not valid to use
:
in a string in YAML without quotes. - That's the text the documentation itself contains:
The <code>GetState</code> method retrieves the state of the filter graph—paused, running, or stopped.
It's also the case for some of your other changes - the dash can also be found in the documentation itself.
Updated the description format for IUserInputString interface.
Updated the description to remove unnecessary hyphenation.
Updated description formatting in the GetState method documentation.
Updated the description formatting for clarity.
Unfortunately some of the follow-up commits that were merged caused some of the files to become invalid due to the |
The fixes were made by Claude Sonnet 4