Skip to content

Commit 2e15adc

Browse files
committed
Fix: title issues
1 parent 3bbe9ea commit 2e15adc

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pretext/GeneralIntro/SpecialWaystoExecutePythoninthisBook.ptx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ print(2 + 3)
5353
In codelens you can see and control the step by step progress.
5454
Note that the red arrow always points to the next line of code that is going to be executed.
5555
The light green arrow points to the line that was just executed.</p>
56-
<program xml:id="firstexample" interactive="codelens" language="python">
56+
<program label="firstexample" interactive="codelens" language="python">
5757
<input>
5858
print("My first program adds two numbers, 2 and 3:")
5959
print(2 + 3)

pretext/Lists/listTypeConversionFunction.ptx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0"?>
22
<section xml:id="lists_list-type-conversion-function">
3-
<title><c>list</c> Type Conversion Function</title>
3+
<title>List - Type Conversion Function</title>
44
<p>Python has a built-in type conversion function called
55
<c>list</c> that tries to turn whatever you give it
66
into a list. For example, try the following:</p>

0 commit comments

Comments
 (0)