Skip to content

Commit af1eea9

Browse files
Merge pull request #1889 from madeline-underwood/patch-18
Minor change to itemized list so only two points are listed for two checksums
2 parents 6d394c9 + 61f8e44 commit af1eea9

File tree

1 file changed

+3
-2
lines changed
  • content/learning-paths/cross-platform/adler32

1 file changed

+3
-2
lines changed

content/learning-paths/cross-platform/adler32/about-2.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ The algorithm works by calculating two 16-bit sums:
3636

3737
- s1: A simple sum of all bytes.
3838
- s2: A sum of all s1 values after each byte.
39-
- The final checksum is `(s2 << 16) | s1`.
39+
40+
The final checksum is `(s2 << 16) | s1`.
4041

4142
## What You'll Build
4243

@@ -49,4 +50,4 @@ This project walks you through building the following components using GitHub Co
4950
- A NEON-optimized version of Adler32.
5051
- A performance comparison table for both implementations.
5152

52-
Continue to the next section to start creating the project.
53+
Continue to the next section to start creating the project.

0 commit comments

Comments
 (0)