summary refs log tree commit diff stats
path: root/tests/async/tasyncawait.nim
diff options
context:
space:
mode:
authorflywind <xzsflywind@gmail.com>2021-08-01 19:52:24 +0800
committerGitHub <noreply@github.com>2021-08-01 12:52:24 +0100
commit2bc07554ccd64d7405d0f386f17f7b1faa95bd6f (patch)
treeb9f1a8f7f5805a1bec01dcbae65d9733cd2b2c1b /tests/async/tasyncawait.nim
parent916d0c21af6153338a8064ff953b579ff87c6ba6 (diff)
downloadNim-2bc07554ccd64d7405d0f386f17f7b1faa95bd6f.tar.gz
make proc names consistent (#18626)
* rename `endswith` to `endsWith`

* rename
Diffstat (limited to 'tests/async/tasyncawait.nim')
-rw-r--r--tests/async/tasyncawait.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/async/tasyncawait.nim b/tests/async/tasyncawait.nim
index f658a15ed..e86542b2d 100644
--- a/tests/async/tasyncawait.nim
+++ b/tests/async/tasyncawait.nim
@@ -34,7 +34,7 @@ proc readMessages(client: AsyncFD) {.async.} =
       clientCount.inc
       break
     else:
-      if line.startswith("Message "):
+      if line.startsWith("Message "):
         msgCount.inc
       else:
         doAssert false