Skip to content

Commit

Permalink
Remove unnecessary escape characters. (#1561)
Browse files Browse the repository at this point in the history
  • Loading branch information
InsertCreativityHere authored Oct 24, 2023
1 parent b70f489 commit 93ab942
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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

0 comments on commit 93ab942

Please sign in to comment.