Skip to content

Commit

Permalink
Clarify doc sentence
Browse files Browse the repository at this point in the history
  • Loading branch information
serenity4 committed Oct 1, 2024
1 parent 3eac501 commit b8afaa4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/src/tutorials/manipulating_spirv.jl
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ ir.types

ir.capabilities

# Let's now assemble it into a sequence of words. Note how the regenerated module slightly differs from the original module.
# Let's now assemble it into a sequence of instructions. Note that the regenerated module may slightly differ from the original module; extra metadata may be added or removed.

mod_regenerated = SPIRV.Module(ir)
regenerated = SPIRV.Module(ir)

setdiff(mod, mod_regenerated)
setdiff(mod, regenerated)

#-

setdiff(mod_regenerated, mod)
setdiff(regenerated, mod)

0 comments on commit b8afaa4

Please sign in to comment.