Fix typo in AST::Branchable example

This commit is contained in:
Sijawusz Pur Rahnama 2022-11-23 03:21:49 +01:00
parent 4500181ddb
commit ffd63ef028

View file

@ -6,7 +6,7 @@ module Ameba::AST
# are branchables. # are branchables.
# #
# ``` # ```
# white a > 100 # Branchable A # while a > 100 # Branchable A
# if b > 2 # Branchable B # if b > 2 # Branchable B
# a += 1 # a += 1
# end # end