-
- Downloads
Change quotes in function documentation string.
The documentation string for parse_host_mac_ip_list() used to be a single-quoted string literal, and use double quotes (") around all documented strings inside. Change that, so it is a double-quoted string literal and use single quotes (') for most documented strings inside, in particular for those that are used as Ruby strings and "symbols", and `` and '' for things that are quoted as text. This makes the text read better, in my opinion. (Normal double quotes would have been better for the latter case, but we would have to quote them with backslashes, which makes it more difficult to read in the source code, so `` and '' will have to do.)
Loading
Please register or sign in to comment