Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unnecessary escape characters. #1561

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion slice/Ice/Current.ice
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ enum OperationMode
* <p class="Deprecated"><code>Nonmutating</code> is deprecated; Use the
* <code>idempotent</code> keyword instead. For C++, to retain the mapping
* of <code>nonmutating</code> operations to C++ <code>const</code>
* member functions, use the <code>\["cpp:const"]</code> metadata
* member functions, use the <code>["cpp:const"]</code> metadata
* directive.
*/
\Nonmutating,
Expand Down
6 changes: 3 additions & 3 deletions slice/Ice/Properties.ice
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ module Ice
* A property set used to configure Ice and Ice applications.
* Properties are key/value pairs, with both keys and values
* being strings. By convention, property keys should have the form
* <em>application-name</em>\[.<em>category</em>\[.<em>sub-category</em>]].<em>name</em>.
* <em>application-name</em>[.<em>category</em>[.<em>sub-category</em>]].<em>name</em>.
*
**/
local interface Properties
Expand Down Expand Up @@ -111,7 +111,7 @@ local interface Properties
* whitespace and commas if they are enclosed in single or double
* quotes. If quotes are mismatched, an empty list is returned.
* Within single quotes or double quotes, you can escape the
* quote in question with \, e.g. O'Reilly can be written as
* quote in question with a backslash, e.g. O'Reilly can be written as
* O'Reilly, "O'Reilly" or 'O\'Reilly'.
*
* @param key The property key.
Expand All @@ -131,7 +131,7 @@ local interface Properties
* whitespace and commas if they are enclosed in single or double
* quotes. If quotes are mismatched, the default list is returned.
* Within single quotes or double quotes, you can escape the
* quote in question with \, e.g. O'Reilly can be written as
* quote in question with a backslash, e.g. O'Reilly can be written as
* O'Reilly, "O'Reilly" or 'O\'Reilly'.
*
* @param key The property key.
Expand Down