mirror of
https://github.com/cp2k/cp2k.git
synced 2026-07-28 06:05:29 -04:00
Fix typo in variable name
This commit is contained in:
parent
34dff9424b
commit
f437168fd5
1 changed files with 3 additions and 3 deletions
|
|
@ -189,7 +189,7 @@ def render_keyword(
|
|||
usage = get_text(keyword.find("USAGE"))
|
||||
description = get_text(keyword.find("DESCRIPTION"))
|
||||
location = get_text(keyword.find("LOCATION"))
|
||||
lone_leyword_value = get_text(keyword.find("LONE_KEYWORD_VALUE"))
|
||||
lone_keyword_value = get_text(keyword.find("LONE_KEYWORD_VALUE"))
|
||||
|
||||
# Find keyword data type.
|
||||
data_type_element = keyword.find("DATA_TYPE")
|
||||
|
|
@ -229,8 +229,8 @@ def render_keyword(
|
|||
if len(keyword_names) > 1:
|
||||
aliases = " ,".join(keyword_names[1:])
|
||||
output += [f"**Aliase:** {aliases}", ""]
|
||||
if lone_leyword_value:
|
||||
output += [f"**Lone keyword:** `{escape_markdown(lone_leyword_value)}`", ""]
|
||||
if lone_keyword_value:
|
||||
output += [f"**Lone keyword:** `{escape_markdown(lone_keyword_value)}`", ""]
|
||||
if usage:
|
||||
output += [f"**Usage:** _{escape_markdown(usage)}_", ""]
|
||||
if data_type == "enum":
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue