I'm writing the documentation of a software package which has an optional property. In that context, which is more correct or more frequently used: non-optional or non optional?
Searching for the more frequently used form in google is difficult, because a non-optional search shows non optional results as well.
This is for writing software documentation that explains the usage of an optional property which some objects have.
optionalproperty, so maybenon-optionalornon optionalis clearer in this case. Which one would you use? – Ricardo Sanchez-Saez Sep 09 '15 at 01:01optionalandrequiredin technical documentation. That follows the RFC guidelines https://www.ietf.org/rfc/rfc2119.txt which is what is used for internet standards documentation and influences most (good) technical documentation. – Justin Cave Sep 09 '15 at 05:47requiredafter all. – Ricardo Sanchez-Saez Sep 09 '15 at 09:34