-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix another typos in strings and comments
- Loading branch information
Showing
7 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,8 @@ | |
// SPDX-FileCopyrightText: 2023-2024 Kensuke Fukutani <[email protected]> | ||
// SPDX-License-Identifier: MIT | ||
|
||
#ifndef FK_YAML_DETAIL_INPUT_LEXICAL_ANALIZER_HPP_ | ||
#define FK_YAML_DETAIL_INPUT_LEXICAL_ANALIZER_HPP_ | ||
#ifndef FK_YAML_DETAIL_INPUT_LEXICAL_ANALYZER_HPP_ | ||
#define FK_YAML_DETAIL_INPUT_LEXICAL_ANALYZER_HPP_ | ||
|
||
#include <algorithm> | ||
#include <cctype> | ||
|
@@ -35,7 +35,7 @@ namespace { | |
|
||
// whether the current context is flow(1) or block(0) | ||
const uint32_t flow_context_bit = 1u << 0u; | ||
// whether the curent document part is directive(1) or content(0) | ||
// whether the current document part is directive(1) or content(0) | ||
const uint32_t document_directive_bit = 1u << 1u; | ||
|
||
} // anonymous namespace | ||
|
@@ -1437,4 +1437,4 @@ class lexical_analyzer { | |
|
||
FK_YAML_DETAIL_NAMESPACE_END | ||
|
||
#endif /* FK_YAML_DETAIL_INPUT_LEXICAL_ANALIZER_HPP_ */ | ||
#endif /* FK_YAML_DETAIL_INPUT_LEXICAL_ANALYZER_HPP_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters