diff options
author | yojiyama7 <yojiyama7@gmail.com> | 2024-04-28 19:36:51 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-28 12:36:51 +0200 |
commit | 47594eb9091e788e672c1020f18d84a54bdcbf37 (patch) | |
tree | 1483e3742b28fa25b9124763aa3615970c223c82 /doc | |
parent | f682dabf71f35833e934a79007906f94d8d32c92 (diff) | |
download | Nim-47594eb9091e788e672c1020f18d84a54bdcbf37.tar.gz |
fix typo: "As can been seen" to "As can be seen" (#23544)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/tut2.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tut2.md b/doc/tut2.md index 4b9049082..1b59288d5 100644 --- a/doc/tut2.md +++ b/doc/tut2.md @@ -166,7 +166,7 @@ An example: n.strVal = "" ``` -As can been seen from the example, an advantage to an object hierarchy is that +As can be seen from the example, an advantage to an object hierarchy is that no conversion between different object types is needed. Yet, access to invalid object fields raises an exception. |