From b85ec11c007287cf744ee3c5aab516ef3137dceb Mon Sep 17 00:00:00 2001 From: Jose Prous Date: Sun, 13 Sep 2015 19:33:56 -0400 Subject: [PATCH 1/2] remove duplicate text --- src/chapter-15.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/chapter-15.md b/src/chapter-15.md index 6a64e1f..b86dd08 100644 --- a/src/chapter-15.md +++ b/src/chapter-15.md @@ -302,8 +302,7 @@ the pike. The success or failure of the search can then be determined outside the loop, if necessary, by checking for the tail node's special pointer—but the inside of the loop is streamlined to just one test, as shown in Listing 15.5. Not all linked lists lend themselves to -sentinels, but the performance benefits are considerable for those lend -themselves to sentinels, but the performance benefits are considerable +sentinels, but the performance benefits are considerable for those that do. ![**Figure 15.3**  *Representing an empty list.*](images/15-03.jpg) From 30b83be20dd830f906517fa56dae8929afddd7e8 Mon Sep 17 00:00:00 2001 From: Jose Prous Date: Sun, 13 Sep 2015 19:41:36 -0400 Subject: [PATCH 2/2] typo --- src/chapter-21.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chapter-21.md b/src/chapter-21.md index e6db869..787a427 100644 --- a/src/chapter-21.md +++ b/src/chapter-21.md @@ -237,7 +237,7 @@ contention. Such operations, as in ```nasm mov eax,edx ;U-pipe cycle 1 -sub edx,edxX ;V-pipe cycle 1 +sub edx,edx ;V-pipe cycle 1 ``` are free of charge.