浏览代码

Fixing cross-chapter links

Swaroop C H 12 年之前
父节点
当前提交
bdcbe0d5fe
共有 2 个文件被更改,包括 4 次插入7 次删除
  1. 2 2
      08-control-flow.md
  2. 2 5
      12-problem-solving.md

+ 2 - 2
08-control-flow.md

@@ -254,8 +254,8 @@ executing the block of statements for each value of `i`.  In this
 case, we just print the value in the block of statements.
 case, we just print the value in the block of statements.
 
 
 Remember that the `else` part is optional. When included, it is always
 Remember that the `else` part is optional. When included, it is always
-executed once after the `for` loop is over unless a [break](#break)
-statement is encountered.
+executed once after the `for` loop is over unless a
+[break](#the-break-statement) statement is encountered.
 
 
 Remember that the `for..in` loop works for any sequence. Here, we have
 Remember that the `for..in` loop works for any sequence. Here, we have
 a list of numbers generated by the built-in `range` function, but in
 a list of numbers generated by the built-in `range` function, but in

+ 2 - 5
12-problem-solving.md

@@ -152,11 +152,8 @@ Note to Windows Users
     you end up using an unknown escape sequence `\D`.
     you end up using an unknown escape sequence `\D`.
 
 
 Now that we have a working backup script, we can use it whenever we
 Now that we have a working backup script, we can use it whenever we
-want to take a backup of the files. Linux/Unix users are advised to
-use the [executable method](#executable-python-programs) as discussed
-earlier so that they can run the backup script anytime anywhere. This
-is called the **operation** phase or the **deployment** phase of the
-software.
+want to take a backup of the files. This is called the **operation**
+phase or the **deployment** phase of the software.
 
 
 The above program works properly, but (usually) first programs do not
 The above program works properly, but (usually) first programs do not
 work exactly as you expect. For example, there might be problems if
 work exactly as you expect. For example, there might be problems if