Fix typo, replace `getBytes` with `nextBytes`

This commit is contained in:
Ed Minnix 2023-08-07 00:16:47 -04:00
Родитель abe3a816ce
Коммит fe4eef0bcb
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -103,7 +103,7 @@ class StdlibRandomSource extends RandomDataSource {
}
override Expr getOutput() {
if m.hasName("getBytes") then result = this.getArgument(0) else result = this
if m.hasName("nextBytes") then result = this.getArgument(0) else result = this
}
}