Fix typo in orgnode.py (#397)

Fix spelling of Ouput in org parser property drawer comment to Output.
This commit is contained in:
Ikko Eltociear Ashimine
2023-08-02 11:54:57 +09:00
committed by GitHub
parent 02e216c135
commit 49abb9df9c

View File

@@ -484,7 +484,7 @@ class Orgnode(object):
if self._closed or self._scheduled or self._deadline:
n = n + "\n"
# Ouput Property Drawer
# Output Property Drawer
n = n + indent + ":PROPERTIES:\n"
for key, value in self._properties.items():
n = n + indent + f":{key}: {value}\n"