"...composable_kernel_rocm.git" did not exist on "6f928a08765e2110caf8ef20586c29d5e414ff71"
Unverified Commit 6701275f authored by Josh Soref's avatar Josh Soref Committed by GitHub
Browse files

Spelling (#870)

* spelling: differently

* spelling: irrelevant

* spelling: specified
parent cb7bb982
# Encodings and `yaml-cpp` # # Encodings and `yaml-cpp` #
`yaml-cpp` will parse any file as specificed by the [YAML 1.2 spec](http://www.yaml.org/spec/1.2/spec.html#id2570322). Internally, it stores all strings in UTF-8, and representation is done with UTF-8. This means that in `yaml-cpp` will parse any file as specified by the [YAML 1.2 spec](http://www.yaml.org/spec/1.2/spec.html#id2570322). Internally, it stores all strings in UTF-8, and representation is done with UTF-8. This means that in
``` ```
std::string str; std::string str;
......
...@@ -88,7 +88,7 @@ void Scanner::ScanNextToken() { ...@@ -88,7 +88,7 @@ void Scanner::ScanNextToken() {
return StartStream(); return StartStream();
} }
// get rid of whitespace, etc. (in between tokens it should be irrelevent) // get rid of whitespace, etc. (in between tokens it should be irrelevant)
ScanToNextToken(); ScanToNextToken();
// maybe need to end some blocks // maybe need to end some blocks
......
...@@ -171,7 +171,7 @@ void Scanner::ScanBlockEntry() { ...@@ -171,7 +171,7 @@ void Scanner::ScanBlockEntry() {
// Key // Key
void Scanner::ScanKey() { void Scanner::ScanKey() {
// handle keys diffently in the block context (and manage indents) // handle keys differently in the block context (and manage indents)
if (InBlockContext()) { if (InBlockContext()) {
if (!m_simpleKeyAllowed) if (!m_simpleKeyAllowed)
throw ParserException(INPUT.mark(), ErrorMsg::MAP_KEY); throw ParserException(INPUT.mark(), ErrorMsg::MAP_KEY);
...@@ -199,7 +199,7 @@ void Scanner::ScanValue() { ...@@ -199,7 +199,7 @@ void Scanner::ScanValue() {
// seems fine) // seems fine)
m_simpleKeyAllowed = false; m_simpleKeyAllowed = false;
} else { } else {
// handle values diffently in the block context (and manage indents) // handle values differently in the block context (and manage indents)
if (InBlockContext()) { if (InBlockContext()) {
if (!m_simpleKeyAllowed) if (!m_simpleKeyAllowed)
throw ParserException(INPUT.mark(), ErrorMsg::MAP_VALUE); throw ParserException(INPUT.mark(), ErrorMsg::MAP_VALUE);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment