mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-04 12:07:51 +00:00
Correct the spelling of the word 'overridden'. (#5212)
This commit is contained in:
@@ -200,7 +200,7 @@ proc getOutFile*(filename, ext: string): string =
|
||||
proc getPrefixDir*(): string =
|
||||
## Gets the prefix dir, usually the parent directory where the binary resides.
|
||||
##
|
||||
## This is overrided by some tools (namely nimsuggest) via the ``gPrefixDir``
|
||||
## This is overridden by some tools (namely nimsuggest) via the ``gPrefixDir``
|
||||
## global.
|
||||
if gPrefixDir != "": result = gPrefixDir
|
||||
else:
|
||||
|
||||
@@ -8,7 +8,7 @@ proc new[V](t: typedesc[BaseClass], v: V): BaseClass[V] =
|
||||
BaseClass[V](b: v)
|
||||
|
||||
proc baseMethod[V](v: BaseClass[V]): V = v.b
|
||||
proc overridedMethod[V](v: BaseClass[V]): V = v.baseMethod
|
||||
proc overriddenMethod[V](v: BaseClass[V]): V = v.baseMethod
|
||||
|
||||
type
|
||||
ChildClass[V] = object of BaseClass[V]
|
||||
@@ -17,12 +17,12 @@ type
|
||||
proc new[V](t: typedesc[ChildClass], v1, v2: V): ChildClass[V] =
|
||||
ChildClass[V](b: v1, c: v2)
|
||||
|
||||
proc overridedMethod[V](v: ChildClass[V]): V = v.c
|
||||
proc overriddenMethod[V](v: ChildClass[V]): V = v.c
|
||||
|
||||
let c = ChildClass[string].new("Base", "Child")
|
||||
|
||||
assert c.baseMethod == "Base"
|
||||
assert c.overridedMethod == "Child"
|
||||
assert c.overriddenMethod == "Child"
|
||||
|
||||
|
||||
# bug #4528
|
||||
|
||||
Reference in New Issue
Block a user