Browse Source

`to_random_generator` -> `random_generator`

gingerBill 1 year ago
parent
commit
e41ad2bf16
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/crypto/crypto.odin

+ 1 - 1
core/crypto/crypto.odin

@@ -61,7 +61,7 @@ rand_bytes :: proc (dst: []byte) {
 }
 
 
-to_random_generator :: proc() -> runtime.Random_Generator {
+random_generator :: proc() -> runtime.Random_Generator {
 	return {
 		procedure = proc(data: rawptr, mode: runtime.Random_Generator_Mode, p: []byte) {
 			switch mode {