[Doc] typos in .py and CHANGELOG.md (#1066)

This commit is contained in:
Didier Durand
2025-12-04 18:54:17 +01:00
committed by GitHub
parent 49ba26b04c
commit 1b4856507c
3 changed files with 4 additions and 4 deletions

View File

@@ -1712,10 +1712,10 @@
- `████░` **Chapter 6: Data Engineering**: Added a 'Resources' section to all QMDs with collapsible intro text for each part.
- `████░` **Chapter 7: AI Frameworks**: Added a section with introductory text and enabled collapsible sections within the Resources.
- `████░` **Chapter 8: AI Training**: Added a Resources section at the end of the chapter with introductory text and enabled collapsing functionality for better organization.
- `███░░` **Chapter 9: Efficient AI**: Added more slides and an 'Resources' section with introductory text that can be collapsed.
- `███░░` **Chapter 9: Efficient AI**: Added more slides and a 'Resources' section with introductory text that can be collapsed.
- `████░` **Chapter 10: Model Optimizations**: Added an empty 'Resources' section at the end of each QMD file to allow for future material additions.
- `███░░` **Chapter 11: AI Acceleration**: Added introductory text for each section within the Resources part and enabled collapsible sections.
- `███░░` **Chapter 12: Benchmarking AI**: Added an 'Resources' section at the end of all QMDs with intro text and enabled collapsing.
- `███░░` **Chapter 12: Benchmarking AI**: Added a 'Resources' section at the end of all QMDs with intro text and enabled collapsing.
- `████░` **Chapter 13: ML Operations**: Added a Resources section at the end of each QMD with introductory text for each part and enabled collapsing.
- `████░` **Chapter 14: On-Device Learning**: Resources section added to the end of all QMDs, with collapsible intro text and space for learning materials.
- `███░░` **Chapter 15: Security & Privacy**: Added a 'Resources' section with intro text and enabled collapsing at the end of all QMDs.

View File

@@ -43,7 +43,7 @@ class MaintenanceCommand:
console.print(f"[blue]🔄 Switching to {format_type.upper()} configuration...[/blue]")
try:
# Setup the symlink
# Set up the symlink
config_name = self.config_manager.setup_symlink(format_type)
console.print(f"[green]✅ Switched to {format_type.upper()} configuration[/green]")
console.print(f"[dim]🔗 Active config: {config_name}[/dim]")

View File

@@ -416,7 +416,7 @@ def extract_sections(file_path: str, verbose: bool = False, quiet: bool = False)
# Find matching cleaned content by title similarity
cleaned_content = None
for cleaned_title, content in cleaned_sections:
# Match by normalized title (remove extra spaces, case insensitive)
# Match by normalized title (remove extra spaces, case-insensitive)
if _normalize_title(original_title) == _normalize_title(cleaned_title):
cleaned_content = content
break