Skip to content

Commit 9ce6440

Browse files
Merge pull request #703 from VectorCamp/main
sample text is larger than 20-bytes
2 parents c1a2969 + 551d6bd commit 9ce6440

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/learning-paths/cross-platform/memory-latency/how-latency-impacts-performance-1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ void free_nodes(node_t *n) {
6868
}
6969

7070
int main() {
71-
const char text[] = "This is a sample text";
71+
const char text[] = "This is a text";
7272
node_t *node0 = new_node(NULL, text, strlen(text));
7373

7474
node_t * node = node0;

0 commit comments

Comments
 (0)