Make codebase consistent with design.md

This commit is contained in:
2025-08-17 17:00:23 -04:00
parent 1b1b875a3a
commit 9e397d19c9
11 changed files with 154 additions and 75 deletions

View File

@@ -26,14 +26,14 @@ struct JsonToken {
*
* @example
* ```cpp
* const JsonToken* token = Perfect_Hash::lookup_json_token("request_id", 10);
* const JsonToken* token = PerfectHash::lookup_json_token("request_id", 10);
* if (token) {
* JsonTokenType type = static_cast<JsonTokenType>(token->token_id);
* // Handle known token...
* }
* ```
*/
class Perfect_Hash {
class PerfectHash {
public:
/**
* @brief Look up a JSON token by name using perfect hash.