diff --git a/e107-Coding-Standard.md b/e107-Coding-Standard.md index 54f5194..3f5019d 100644 --- a/e107-Coding-Standard.md +++ b/e107-Coding-Standard.md @@ -263,7 +263,7 @@ Update Example (few fields): $sql->update("user","user_email = 'user@email.com' WHERE user_id = 1 LIMIT 1"); -Note the _FIELD_DEFS and _NOTNULL arrays for assisting with producing valid data. These are auto-generated for any db_Insert() or db_Update() that passes array data which does not include them. If the automatic generation produces the wrong conversions, there is a mechanism to override the default. +Note the _FIELD_DEFS and _NOTNULL arrays for assisting with producing valid data. These are auto-generated for any insert() or update() that passes array data which does not include them. If the automatic generation produces the wrong conversions, there is a mechanism to override the default. Use backticks around table names and field names. (eg.`#user`)