Fix typo, replace getBytes with nextBytes

This commit is contained in:
Ed Minnix
2023-08-07 00:16:47 -04:00
parent abe3a816ce
commit fe4eef0bcb

View File

@@ -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
}
}