diff options
author | Henrik Nord <[email protected]> | 2014-03-19 12:18:44 +0100 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2014-03-19 12:18:47 +0100 |
commit | 0a2979c9f517e8e1141c51996fcd6f06979a32c6 (patch) | |
tree | 519e57692b055a9db8b2400efb805ea96de4f3bb /erts/emulator | |
parent | c8d473989a36d6708ac1fd421e484ccd54414c50 (diff) | |
parent | 75937381ec52e1714cfbc5936441b15bb1240bdb (diff) | |
download | otp-0a2979c9f517e8e1141c51996fcd6f06979a32c6.tar.gz otp-0a2979c9f517e8e1141c51996fcd6f06979a32c6.tar.bz2 otp-0a2979c9f517e8e1141c51996fcd6f06979a32c6.zip |
Merge branch 'cobusc/correct_comment'
* cobusc/correct_comment:
Fix comment that differs from code
OTP-11793
Diffstat (limited to 'erts/emulator')
-rw-r--r-- | erts/emulator/beam/erl_db_tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/beam/erl_db_tree.c b/erts/emulator/beam/erl_db_tree.c index 25029ba90f..a62a83a928 100644 --- a/erts/emulator/beam/erl_db_tree.c +++ b/erts/emulator/beam/erl_db_tree.c @@ -485,7 +485,7 @@ static int db_first_tree(Process *p, DbTable *tbl, Eterm *ret) *ret = am_EOT; return DB_ERROR_NONE; } - /* Walk down to the tree to the left */ + /* Walk down the tree to the left */ if ((stack = get_static_stack(tb)) != NULL) { stack->pos = stack->slot = 0; } @@ -531,7 +531,7 @@ static int db_last_tree(Process *p, DbTable *tbl, Eterm *ret) *ret = am_EOT; return DB_ERROR_NONE; } - /* Walk down to the tree to the left */ + /* Walk down the tree to the right */ if ((stack = get_static_stack(tb)) != NULL) { stack->pos = stack->slot = 0; } |