Skip to content

Commit 9aedfe7

Browse files
authored
chore: fix some typos in comment (#2002)
Signed-off-by: lvyaoting <[email protected]>
1 parent 92c8f89 commit 9aedfe7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

bvm/Shaders/amm/contract.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ namespace Amm
174174

175175
if (dCtl < m_Ctl)
176176
{
177-
// round the return part to the samller side, this way we'll never have empty components
177+
// round the return part to the smaller side, this way we'll never have empty components
178178
Float kRet = Float(dCtl) / Float(m_Ctl);
179179

180180
dRet.m_Tok1 = Float(m_Tok1) * kRet;

bvm/unittest/evm_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -802,7 +802,7 @@ namespace beam
802802
ByteBuffer ScanBuf(const std::string& s)
803803
{
804804
ByteBuffer ret;
805-
if (s.size() > 2) // 1st 2 characers are probably 0x
805+
if (s.size() > 2) // 1st 2 characters are probably 0x
806806
{
807807
auto len = static_cast<uint32_t>(s.size());
808808
ret.resize(len);

node/functionaltests/tools/base_node_connection.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ void BaseTestNode::Run()
8585

8686
void BaseTestNode::OnConnectedSecure()
8787
{
88-
BEAM_LOG_INFO() << "connection is succeded";
88+
BEAM_LOG_INFO() << "connection is succeeded";
8989
}
9090

9191
void BaseTestNode::OnDisconnect(const DisconnectReason& reason)

0 commit comments

Comments
 (0)