Skip to content

Commit

Permalink
Merge pull request #35 from golemcloud/float-syntax
Browse files Browse the repository at this point in the history
Fix obsolete float syntax
  • Loading branch information
vigoo authored Dec 18, 2024
2 parents 20b37f8 + cdc0d90 commit 4082daa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions wit-packages/golem-rpc/wasm-rpc.wit
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ interface types {
prim-s16(s16),
prim-s32(s32),
prim-s64(s64),
prim-float32(float32),
prim-float64(float64),
prim-float32(f32),
prim-float64(f64),
prim-char(char),
prim-bool(bool),
prim-string(string),
Expand Down
4 changes: 2 additions & 2 deletions wit/deps/wasm-rpc/wasm-rpc.wit
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ interface types {
prim-s16(s16),
prim-s32(s32),
prim-s64(s64),
prim-float32(float32),
prim-float64(float64),
prim-float32(f32),
prim-float64(f64),
prim-char(char),
prim-bool(bool),
prim-string(string),
Expand Down

0 comments on commit 4082daa

Please sign in to comment.