Skip to content

Commit bd39127

Browse files
Spring 2026 text update (#864)
spring 2026 text update
1 parent d49b823 commit bd39127

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/include/primer/count_min_sketch.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ class CountMinSketch {
8585
/** Pre-computed hash functions for each row */
8686
std::vector<std::function<size_t(const KeyType &)>> hash_functions_;
8787

88-
/** @fall2025 PLEASE DO NOT MODIFY THE FOLLOWING */
88+
/** @spring2026 PLEASE DO NOT MODIFY THE FOLLOWING */
8989
constexpr static size_t SEED_BASE = 15445;
9090

9191
/**

src/primer/count_min_sketch.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ template <typename KeyType>
2828
CountMinSketch<KeyType>::CountMinSketch(uint32_t width, uint32_t depth) : width_(width), depth_(depth) {
2929
/** @TODO(student) Implement this function! */
3030

31-
/** @fall2025 PLEASE DO NOT MODIFY THE FOLLOWING */
31+
/** @spring2026 PLEASE DO NOT MODIFY THE FOLLOWING */
3232
// Initialize seeded hash functions
3333
hash_functions_.reserve(depth_);
3434
for (size_t i = 0; i < depth_; i++) {

0 commit comments

Comments
 (0)