bschoening commented on code in PR #4112: URL: https://github.com/apache/cassandra/pull/4112#discussion_r2621503546
########## doc/modules/cassandra/examples/BNF/create_user_statement.bnf: ########## @@ -1,4 +1,6 @@ -create_user_statement ::= CREATE USER [ IF NOT EXISTS ] role_name - [ WITH [ HASHED ] PASSWORD string ] - [ user_option ] -user_option: SUPERUSER | NOSUPERUSER +create_user_statement ::= CREATE USER [ IF NOT EXISTS ] role_name ( WITH <option> ( AND <option> )* )? +<option> ::= PASSWORD = <string> + | HASHED PASSWORD = <string> Review Comment: fixed -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

