bpo-36189: Fixing typo in tutorial introduction (GH-13093) · python/cpython@2b5ffc0 (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit 2b5ffc0
authored and
committed
(cherry picked from commit 98a1e06) Co-authored-by: Jonatan jonyucra@gmail.com
File tree
1 file changed
lines changed
1 file changed
lines changed
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -383,7 +383,7 @@ items of different types, but usually the items all have the same type. :: | ||
383 | 383 | >>> squares |
384 | 384 | [1, 4, 9, 16, 25] |
385 | 385 | |
386 | -Like strings (and all other built-in :term:`sequence` type), lists can be | |
386 | +Like strings (and all other built-in :term:`sequence` types), lists can be | |
387 | 387 | indexed and sliced:: |
388 | 388 | |
389 | 389 | >>> squares[0] # indexing returns the item |